您好,登錄后才能下訂單哦!
創(chuàng)建實(shí)例對象:
ES5中常用的構(gòu)造函數(shù)模式
function?Person(name){ ????this.name?=?name; ???? ????this.getName?=?function(){ ????????return?this.name ????} }
ES6 通過class定義類
class?Person{ ????constructor(name){ ????????this.name?=?name; ????} ????getName(){ ????????return?this.name; ????}; }
1、類的所有方法都定義在類的prototype屬性上面
2、類和原型上的方法、屬性都是不可枚舉的,所以只能通過Object.getOwnPropertyNames(Person/Person.prototype)獲取其屬性、方法名來遍歷;
? ? ?注:1)for-in,? Object.keys(),? Object.getOwnPropertyNames三種方式遍歷對象
? ? ? ? ? ? 2)for-in和Object.keys()只能獲取可枚舉的屬性、方法
參考:
http://es6.ruanyifeng.com/#docs/class
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。