function Rabbit(name) { // this = {}; this.name = name; this.func = () => { console.log(this.name)}; // return this; }