JSFiddle - React, Tailwind, and code Playground

by pertrai1

JavaScript

var myObject = {
    name: "Rob Simpson",
    age: 37,
    location: "Virginia",
    card: function() {
     return "My name is " + this.name + " and my age is " + this.age;
}
    };

console.log(myObject.age);