Object.create() 与 new Object()的区别

object.create(proto, propertiesObject)

protonull时,创建一个空对象,没有原型

const person = Object.create(null)
console.log(person);

创建一个新的对象,他的原型指向接收的参数对象。

const human = {
  name: "danae",
  isHuman: true,
  printIntroduction: function () {
    console.log(`My name is ${this.name}. Am I human? ${this.isHuman}`);
  }
};
var person = Object.create(human)
console.log(person);

new Object()

创建一个新的对象,他的原型指向Object.prototype

const person = new Object()
console.log(person);

你可能感兴趣的:(Object.create() 与 new Object()的区别)