JSFiddle - React, Tailwind, and code Playground

by lottikarotti

JavaScript

/** Demo: JavaScript Killswitch */
var js = true ; if( !js ) return ;

/** Ready to rumble */
$(document).ready(function(){
    var globals = (function(){
        return this;
    })();
    name = 'Rick' ;
    (function() {
        console.log(name);
        var name = 'Viktor';
        console.log(name);
        console.log(globals.name);
    })();
});