all(25) -
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]].