JSFiddle - React, Tailwind, and code Playground

by danShumway

JavaScript

//If use strict doesn't work, we start going crazy
    //Get all methods and infect them.
    /*
    var res = [];
    for(var m in obj) {
        if(typeof obj[m] == "function") {
            res.push(m)
        }
    }
    return res;
    */

var dog = function() {
     //alert(arguments.callee);
     //alert(arguments.callee.caller);
}

var cat = function() {
    dog();
}