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

How to use constructor in Javascript

2025-01-21 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

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

This article focuses on "how to use constructor in Javascript". Interested friends may wish to have a look at it. The method introduced in this paper is simple, fast and practical. Now let the editor take you to learn how to use constructor in Javascript.

Description

1. Constructor is called a constructor because it refers to the constructor itself.

2. Constructor is mainly used to record which constructor the object is referenced to, so that the prototype object can be redirected to the original constructor.

In many cases, we need to manually use the constructor property to restore the original constructor.

Example

Function Star (uname, age) {this.uname = uname; this.age = age;} / / in many cases, we need to manually use the attribute constructor to refer back to the original constructor / / Star.prototype.sing = function () {/ / console.log ('I can sing'); / /} / / Star.prototype.movie = function () {/ / console.log ('I can do a movie') / /} Star.prototype = {/ / if we modify the original prototype object and assign a value to the prototype object, we must manually use constructor to refer back to the original constructor constructor: Star, sing: function () {console.log ('I can sing') }, movie: function () {console.log ('I can act in a movie');}} var ldh = new Star ('Andy Lau', 18); var zxy = new Star ('Jacky Cheung', 19); console.log (Star.prototype); console.log (ldh.__proto__) Console.log (Star.prototype.constructor); console.log (ldh.__proto__.constructor); now that you have a better understanding of "how to use constructor 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: 209

*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