function dev(name, age, work, currentCompany) {
this.name = name;
this.age = age;
this.work = work;
this.currentCompany = currentCompany;
}
let leviLima = new dev('Levi Lima', 32, 'Software Back-end Developer', 'Teddy Open Finance');
console.log(leviLima);
-
😉 Pronouns: He/Him