JSFiddle - React, Tailwind, and code Playground

by Darby Rathbone

JavaScript

var ob = {
    'first': function () {
        this.second();
    },
        'second': function () {
        document.body.appendChild(document.createTextNode('second'));


    }
};
ob.first();