步驟
1.創(chuàng)建一個新的對象obj
2.將對象與構(gòu)建函數(shù)通過原型鏈連接起來
3.將構(gòu)建函數(shù)中的this綁定到新建的對象obj上
4.根據(jù)構(gòu)建函數(shù)返回類型作判斷,如果是原始值則被忽略,如果是返回對 象,需要正常處理
代碼如下:
function Person(name, age){
this.name = name;
this.age = age;
console.log(this.name,age);//name: Tom age: 20
}
var person1 = new Person('Tom', 20)
console.log(person1) // Person {name: "Tom", age: 20}
原文鏈接:
https://blog.csdn.net/m0_58408899/article/details/119122077