JS的new操作符做了什么
小于 1 分钟
JS的new操作符做了什么
new 操作符新建了一个空对象,这个对象原型指向构造函数的 prototype,执行构造函数 后返回这个对象。
- 创建一个空的简单
JavaScript
对象即{}
。 - 链接该对象(即设置该对象的构造函数)到另一个对象。
- 将步骤
1
新创建的对象作为this
的上下文context
。 - 如果该函数没有返回对象,则返回步骤
1
创建的对象。
function _new(base,...args){
var obj = {};
obj.__proto__ = base.prototype;
base.apply(obj, args);
return obj;
}
function Student(i){
this.name = i;
this.hp = 100;
this.mp = 1000;
this.power = 100,
this.defense = 100;
}
Student.prototype.from = "sdust";
var stuGroup = [];
for(let i=0;i<10;++i){
stuGroup.push(_new(Student,i));
}
console.log(stuGroup);