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

Analysis of object prototype proto instance in Javascript

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

Share

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

This article focuses on "proto instance Analysis of object prototype in Javascript". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "proto instance Analysis of object prototype in Javascript".

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 look at whether there is a sing method on the ldh object, and 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 so far. I believe you have a deeper understanding of "object prototype proto instance analysis in Javascript". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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