class Human{ constructor(name){ this.name = name; } greet() { console.log('your name is ' + this.name); return this.name + " says hello!"; } } let user = new Human('Ronnie'); user.greet();