📅  最后修改于: 2022-03-11 14:57:28.560000             🧑  作者: Mango
function Tree(name) {
this.name = name
}
let theTree = new Tree('Redwood')
console.log('theTree.constructor is ' + theTree.constructor)