JSFiddle - React, Tailwind, and code Playground

by somya_kashyap3

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]");