"What do you think about this world?"
class Developer {
private string name
private string role
private string[] current_focus
private string life_motto
constructor() {
this.name = 'Tran Chi Hoa'
this.role = 'Full Stack Developer'
this.current_focus = ['Web', 'Game']
this.life_motto = 'Where has my princess gone?'
}
say_hi(): void {
const message = 'Thanks for dropping by, hope you find some of my working interesting.'
console.log(message)
return
}
}
const me = new Developer()
me.say_hi()