class Greeter { constructor(greeting: string) { console.log(`${greeting} world!`); } } new Greeter('hello'); new Greeter("hello"); const hello = "hey"; new Greeter(hello);