JSFiddle - React, Tailwind, and code Playground

JavaScript

(function(){
    var foo = 'bar';
    function(){
        var foo = 'OMG NO!';
    }
    alert(foo);//alerts 'bar'
})()