JSFiddle - React, Tailwind, and code Playground

by juristr

JavaScript

console.log = function(msg){
   document.write(msg + "<br>");
};
    
var x = 0;
(function(){
    x = 1;
}());

console.log(x); //1