JSFiddle - React, Tailwind, and code Playground
JavaScript
function AddrBookEntry(f, l, a, e) {
this.fname = f;
this.lname = l;
this.addr = a;
this.email = e;
this.personRole = "student";
this.getFullName = function(){
return this.fname + " " + this.lname;
}
}
AddrBookEntry("Sarah", "Connor", "Los Angeles", "[email protected]");
console.log(this.fname);