JSFiddle - React, Tailwind, and code Playground

by Nidhi Patel

JavaScript

const user = {
  name: 'Tyler',
  age: 27,
  greet() {
    alert(`Hello, my name is ${this.name}`)
  }
}

user.greet();