摘要:
原型,每一个javascript对象(除null外)创建的时候,就会与之关联另一个对象,这个对象就是我们所说的原型,每一个对象都会从原型中“继承”属性。 一,prototype 1,在JavaScript中,每个函数都有一个prototype属性,这个属性指向函数的原型对象。 2,prototype 阅读全文
摘要:
class myPromise{ constructor(fun){ console.log(1) this.state="ready"//ready准备状态 success成功回调后 error失败回调后 this.start=function(){ console.log(2) fun(this 阅读全文