亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js中Object.create怎么用

發布時間:2021-10-08 09:29:43 來源:億速云 閱讀:115 作者:小新 欄目:開發技術

小編給大家分享一下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怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

繁昌县| 太湖县| 遵化市| 大理市| 双桥区| 柳江县| 五常市| 易门县| 克东县| 灌阳县| 正蓝旗| 衡阳市| 冀州市| 沾化县| 承德市| 罗定市| 晋中市| 全南县| 铜川市| 安新县| 宁波市| 岑溪市| 东安县| 博乐市| 安泽县| 离岛区| 富民县| 筠连县| 丹巴县| 陆川县| 集安市| 东辽县| 蓬安县| 沛县| 和顺县| 昭苏县| 龙里县| 天峨县| 扎兰屯市| 温宿县| 同江市|