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