JSFiddle - React, Tailwind, and code Playground

by kwilson81

JavaScript

var leapMethod = function() {
    alert("Oh boy!");
};

var person = {
    name: "Sam Beckett",
    yearOfBirth: 1953,
    leap: leapMethod
};

person.leap();