Object方法

1、Object.assign();

用于将所有可枚举属性的值从一个或多个源对象复制到目标对象,最后返回 目标对象

2、Object.create();  

创建一个新对象,使用现有的对象来提供新创建的对象的__proto__

const person = {

isHuman: false,

pritIntroduction: function(){

console.log(`My name is ${this.name}, ${this.isHuman}`)

}

}

const me = Object.create(person);

me.isHuman = true;

me.name = "Larmber";

console.log(me.pritIntroduction());

你可能感兴趣的:(Object方法)