Skip to content

输出是什么?

Posted on:2021年7月3日 at 22:13
function Car() {
  this.make = "Lamborghini";
  return { make: "Maserati" };
}

const myCar = new Car();
console.log(myCar.make);

返回属性的时候,属性的值等于 返回的 值,而不是构造函数中设定的值。我们返回了字符串 "Maserati",所以 myCar.make等于"Maserati".

原文转自:https://fe.ecool.fun/topic/f03cba69-b0fd-4450-b3e0-cb6a1f855bac