您好,登錄后才能下訂單哦!
小編給大家分享一下js中Object.create怎么用,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
1、用Object.create()方法創建新對象,并使用現有對象提供新對象的proto。
2、提供兩個參數,第一個是新創建的原型對象,第二個是為新創建的對象添加屬性的對象。
// father 對象 let father = { name: 'father', friend: ['abby', 'bob'] } // 生成新實例對象 child1 let child1 = Object.create(father) // 更改值類型屬性 child1.name = '修改了name' console.log(child1.name) //修改了name // 更改引用類型值 child1.friend.push('chely') console.log(child1.friend) //[ 'abby', 'bob', 'chely' ] // 生成新實例對象 child2 let child2 = Object.create(father) console.log(child2.name) //father console.log(child2.friend) //[ 'abby', 'bob', 'chely' ]
知識點擴展:
Object.create()創建方法實例
const person = { isHuman: false, printIntroduction: function() { console.log(`My name is ${this.name}. Am I human? ${this.isHuman}`); } }; const me = Object.create(person); me.name = 'Matthew'; // "name" is a property set on "me", but not on "person" me.isHuman = true; // inherited properties can be overwritten me.printIntroduction(); // expected output: "My name is Matthew. Am I human? true"
運行結果
> "My name is Matthew. Am I human? true"
以上是“js中Object.create怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。