create基本实现原理
function create(obj) {
function F() {};
F.prototype = obj;
return new F();
}
1
2
3
4
5
2
3
4
5
在Github上编辑此页 (opens new window)
上次更新: 3/22/2021, 3:47:15 AM
function create(obj) {
function F() {};
F.prototype = obj;
return new F();
}