1. Prototype The prototype is a property under
By adding properties to the prototype, all instantiated objects can share properties and methods Car.prototype = { height : 1400, lang : 4900, carName : 'BMW' } function Car() { } var car = new Car(); 2. Prototype chain Each instance object has a
2.1 Constructor
function Star(uname, age) { this.uname = uname; this.age = age; } // In many cases, we need to manually use the constructor property to point back to the original constructor Star.prototype = { // If we modify the original prototype object and assign an object to the prototype object, we must manually use constructor to point back to the original constructor constructor: Star, // Manually set to point back to the original constructor sing: function() { console.log('I can sing'); }, movie: function() { console.log('I can act in movies'); } } var zxy = new Star('Jacky Cheung', 19); console.log(zxy) When modifying the function prototype, because 2.2 call/apply By using Difference: function Person(name,age,sex) { this.name = name; this.age = age; this.sex = sex; } function Student(name,age,sex,tel,grade) { //var this = {name: "lin", age: "19", sex: "male", tel: 123, grade: 78} Person.call(this,name,age,sex);//Change this to point to this function through call//Person.apply(this,[name,age,sex]) this.tel = tel; this.grade = grade; } var student = new Student('lin','19','male',123,78); 2.3 new()
var obj = {} //Create an empty object obj.__proto__ = Person.prototype; //Inherited scope Person.call(obj,) //Change this pointer //These three steps are implicit var person = new Person(); //new operation This is the end of this article about the details of the difference between prototype and prototype chain prototype and proto. For more relevant content about the difference between prototype and prototype chain prototype and proto, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: MySQL cleverly uses sum, case and when to optimize statistical queries
>>: HTML dl, dt, dd tags to create a table vs. Table creation table
Recently, when developing a small program, I enco...
<body> <div id="root"> <...
Preface During development, we often encounter va...
There are many purposes for exporting MySQL data,...
This article shares with you the installation and...
Table of contents 1 Use of v-if and v-show 2. Dif...
Edit docker-compose.yml and add the following con...
Table of contents The origin of JSBridge The bidi...
Install Required Files Yum install openssl-* -y C...
This article shares with you the installation of ...
1. Start the Docker container Start a new Docker ...
mysql 8.0.22 winx64 installation and configuratio...
GitHub address, you can star it if you like it Pl...
Box-sizing in CSS3 (content-box and border-box) T...
As shown above, the navigation is fixed at the to...