class pessoa {
constructor(nome,idade){
this.nome = nome;
this.idade = idade;
}
frase(){
return (`${this.nome} tem ${this.idade} anos!`)
}
}
let person = new pessoa("Assis",29);
console.log(person.nome + " " + person.idade);
console.log(person.frase())
To embed this project on your website, copy the following code and paste it into your website's HTML: