class SayHelloTo { name (to) { console.log(`Hello ${to}`); } constructor (to) { this.name(to); } } const helloWorld = new SayHelloTo(World);