0 votes
in JavaScript by
What is the difference between proto and prototype?

1 Answer

0 votes
by

The __proto__ object is the actual object that is used in the lookup chain to resolve methods, etc. Whereas prototype is the object that is used to build __proto__ when you create an object with new.

new Employee().__proto__ === Employee.prototype;
new Employee().prototype === undefined;

There are few more differences,

featurePrototypeproto
AccessAll the function constructors have prototype properties.All the objects have __proto__ property
PurposeUsed to reduce memory wastage with a single copy of functionUsed in lookup chain to resolve methods, constructors etc.
ECMAScriptIntroduced in ES6Introduced in ES5
UsageFrequently usedRarely used
 
...