JSFiddle - React, Tailwind, and code Playground

by justinwyllie

JavaScript

var test = {
    name: "Joe",
    get greet() { alert('Hello ' + this.name) }
}
test.greet();