const protoObj = {name: 1};function Human() {}Human.prototype = protoObj;const vijay = new Human();console.log(vijay.__proto__ === Human.prototype, Human.prototype === protoObj);//true true
const protoObj = {name: 1};function Human() {}Human.prototype = protoObj;const vijay = new Human();console.log(vijay.__proto__ === Human.prototype, Human.prototype === protoObj);//true true