Prototypes and prototype chaining in Javascript
Jan 9, 2023 · 1 min read · Prototype:- Every object in javascript has a built-in property,which is called its prototype. The prototype is itself an object, so the prototype will have its own prototype, making what's called a prototype chain.In javascript, every function and ob...
Join discussion

