function Tree(name) {
this.name = name;
this.greeting = function(){
return `Hello my name is ${this.name}`
}
}
function Tree(name) {
this.name = name;
}
Tree.prototype.greeting = function(){
return `Hello my name is ${this.name}`
}