JSFiddle - React, Tailwind, and code Playground
by juristr
JavaScript
console.log = function(msg){
document.write(msg + "<br/>");
};
var f = function(){
var x = 1;
return function(){
console.log(x);
};
};
var printFunc = f();
printFunc();