JSFiddle - React, Tailwind, and code Playground
by neilime
JavaScript
function testLog(){
console.log(testLog.caller);
console.log(testLog.caller.caller);
}
function testInterval1(){
testLog();
};
function testInterval2(){
testInterval1();
};
setInterval(function(){
testInterval2();
},5000);