class Developer {
constructor() {
this.name = "José";
this.role = "Full Stack Developer";
this.stack = ["Java", "JavaScript",
"Spring boot", "React", "Node.js"];
}
code() {
console.log("Coding with passion...");
}
}
class Developer {
constructor() {
this.name = "José";
this.role = "Full Stack Developer";
this.stack = ["Java", "JavaScript",
"Spring boot", "React", "Node.js"];
}
code() {
console.log("Coding with passion...");
}
}