Skip to content

Instantly share code, notes, and snippets.

View NaN-NaN-sempai's full-sized avatar
😟
Ignorance is bliss

Luís Henrique de Almeida NaN-NaN-sempai

😟
Ignorance is bliss
View GitHub Profile
// CLASSE
class pessoa {
constructor(nome, idade, sexo, pai, mae){
this.nome = nome;
this.idade = idade;
this.sexo = sexo;
this.pai = pai;
this.mae = mae;
}
}