class Man { public name: string constructor(name: string) { this.name = name }}let man = new Man("Alex")//man.name is "Alex"console.log("name is", man.name)