JSFiddle - React, Tailwind, and code Playground

by Angeli Schwartz

HTML

<div id="output"></div>

JavaScript

var myAddrBookEntry = {
    "fname": "Larry",
    "lname": "Bouthillier",
    "addr": "Rhode Island",
    "email": "[email protected]",
    "person-role" : "instructor",
    "getFullName" : function(){
        return this.fname + " " + this.lname;
    },
  "printMe" : function(){
      return "This person is "+this.fname+" " + this.lname + " and      lives in "+this.addr+" and can be reached at "+this.email;
  }
}
function printObject(obj){
    var el = document.getElementById("output");
    el.innerHTML += obj.printMe()+"<br>";
  
}
printObject(myAddrBookEntry);