📌  相关文章
📜  我们为什么要使用对象构造函数——无论代码示例

📅  最后修改于: 2022-03-11 14:57:28.560000             🧑  作者: Mango

代码示例1
function Tree(name) {
  this.name = name
}

let theTree = new Tree('Redwood')
console.log('theTree.constructor is ' + theTree.constructor)