JSFiddle - React, Tailwind, and code Playground

JavaScript

var foo = 'bar';
(function() {
    console.log(foo);
    if(foo === 'baz') {
        var foo = 'qux';
    }
})();