More Info
class estevan = {
constructor () {
this.name = "Estevan";
this.lastname = "Chicoski Vieira";
this.nickname = "Jeallz";
this.age = 19;
this.nationality = "Brazil"
this.favorite_language = "JavaScript";
this.university = {
institution : "UniGuairaca",
course : "TADS (Systems Analysis and Development)"
};
this.languages = {
portuguese : "Fluent",
english : "Intermediate",
spanish : "Beginner"
};
this.coffee = this.hasCoffee(coffee); // required
}
hasCoffee(coffee) {
if (coffee) {
return "☕";
} else {
return "😴"; // Go make coffee!
}
}
}
const Estevan = new estevan();{
"Email" : "estevancv123@gmail.com",
"Instagram" : "@estevan.dev.br",
"Linkedin" : "in/jeallz",
"WebSite" : "www.estevan.dev.br",
"Discord" : "jeallz"
}