← Back tothis vs that

__proto__ vs prototype

Written byPhuoc Nguyen
Created
31 Aug, 2023
Category
JavaScript
In JavaScript, `__proto__` and `prototype` are two frequently used terms that can be confusing. While they are related, they have distinct meanings and uses. Let's clear up the confusion.

Prototype

In JavaScript, when you create an object from a constructor function, it comes with a built-in property called `prototype`. This is like a blueprint for all the objects created from that constructor function. It defines the shared properties and methods that all instances of that object will have.
js
function Circle(radius) {
this.radius = radius;
}

Circle.prototype.getArea = function() {
return Math.PI * Math.pow(this.radius, 2);
};

const circle = new Circle(5);
circle.getArea(); // `78.53981633974483`
In the code above, the `getArea` method is contained in an object called `Circle.prototype`. When a new `Circle` instance is created, its `__proto__` property is set to `Circle.prototype`.

proto

`__proto__` is a property of an object that points to its prototype. This property is used internally by the JavaScript engine to search for properties and methods on an object's prototype chain.
js
const circle = new Circle(10);
console.log(circle.__proto__ === Circle.prototype); // true
In the code above, `circle.__proto__` points to `Circle.prototype`.

Difference

The difference between `__proto__` and `prototype` is simple: `__proto__` is a property of an object instance, while `prototype` is a property of a constructor function.
When you use `__proto__`, you're looking up properties and methods on an object's prototype chain. On the other hand, `prototype` defines the shared properties and methods that all instances created from a constructor function will have.
If you found this post helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!

Questions? 🙋

Do you have any questions about front-end development? If so, feel free to create a new issue on GitHub using the button below. I'm happy to help with any topic you'd like to learn more about, even beyond what's covered in this post.
While I have a long list of upcoming topics, I'm always eager to prioritize your questions and ideas for future content. Let's learn and grow together! Sharing knowledge is the best way to elevate ourselves 🥷.
Ask me questions

Recent posts ⚡

Newsletter 🔔

If you're into front-end technologies and you want to see more of the content I'm creating, then you might want to consider subscribing to my newsletter.
By subscribing, you'll be the first to know about new articles, products, and exclusive promotions.
Don't worry, I won't spam you. And if you ever change your mind, you can unsubscribe at any time.
Phước Nguyễn