JSFiddle - React, Tailwind, and code Playground

by calder12

JavaScript

const hero = {
    _name: 'John Doe',
    getName: function () {
        return this._name;
    }
};

const getName= hero.getName;

console.log(getName());
console.log(hero.getName());