初探原型prototype

prototype是函數的一個屬性( 只有函數纔有 ) ,指向的是一個對象,稱之爲原型對象 function Person(){ this.age=21; this.name='dj' } Person.prototype.head='liuhua'; var p=new Person(); var p2=new Person(); console.log(p.head); //
相關文章
相關標籤/搜索