1. 程式人生 > >JS學習之包裝物件、hasOwnProperty、constructor

JS學習之包裝物件、hasOwnProperty、constructor

function Person(name){ this.name=name; } Person.prototype.country='china';//在原型身上新增一個屬性 var p=new Person('xubj'); // 例項化一個物件 console.log(p.name); // xubj console.log(p.country); // china console.log(p.hasOwnProperty('name')); // true console.log(p.hasOwnProperty('country')); //
false // 因為country並不是物件p身上的,是Person建構函式原型身上的屬性