I am learning about prototypical inheritance in JavaScript and am confused by the difference (if any) between Object.getPrototypeOf(obj) and obj.constructor.prototype. Is there one? Or are these two referencing the same thing?
| |||||||||||||
feedback
|
|
NO It returns the internal For example:
| ||||
|
feedback
|
|
No. In particular, the An example of where
It also fails for typical prototypal inheritance scenarios:
| |||
|
feedback
|