MoonLab - TIL

This is where i store my today-i-learned

You may also wannna visit my blog

Browse by tags

#javascript

#javascript JavaScript Prototype Chain - Aug 14, 2024

prototype chain is inheritance mechanism in JavaScript. JavaScript objects have a link to prototype objects. When trying to access a property of an object, the property will not only be sought on the object, but on the prototype of the object. const o = { a: 1, b: 2, // __proto__ sets the [[Prototype]].