Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What is the function of object prototype proto in Javascript

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly introduces the relevant knowledge of the role of the object prototype proto in Javascript, the content is detailed and easy to understand, the operation is simple and fast, and has a certain reference value. I believe you will gain something after reading this article on the role of object prototype proto in Javascript. Let's take a look at it.

Description

1. All objects have an attribute _ _ proto__ that points to the prototype prototype object of the constructor. The reason why we can use the properties and methods of the constructor prototype prototype object is that the object has a _ _ proto__ prototype.

2. The meaning of the _ _ proto__ object prototype is to provide a direction or a route for the object search mechanism, but it is a non-standard attribute, so this attribute can not be used in actual development, it only refers to the prototype object prototype.

Example

Function Star (uname, age) {this.uname = uname; this.age = age;} Star.prototype.sing = function () {console.log ('I can sing');} var ldh = new Star ('Andy Lau', 18); var zxy = new Star ('Jacky Cheung', 19); ldh.sing () Console.log (ldh); / / the system itself adds a _ _ proto__ to the prototype object prototype console.log of our constructor (ldh.__proto__ = = Star.prototype) / / search rules for methods: first, check whether there is a sing method on the ldh object. If so, execute the sing / / if there is no sing method on this object, because of the existence of _ _ proto__, go to the construction function prototype object prototype to find the sing method. This is the end of the article on "what is the function of the object prototype proto in Javascript"? Thank you for reading! I believe you all have a certain understanding of the knowledge of "what is the role of the object prototype proto in Javascript". If you want to learn more, you are welcome to follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report