摘要:
1.call 实现(apply 类似) Function.prototype.call= function(context){ context = context || window; context.fn = this; let args =[]; for(let i=1;i<arguments. 阅读全文
摘要:
1.每个函数都有一个 prototype 属性指向原型对象。函数创建的实例对象有一个__proto__属性指向该函数的原型对象。函数的原型对象的constructor属性指向该函数。 function Peple(){ }var p1 = new Peple(); //创建Peple的实例对象var 阅读全文