JSFiddle - React, Tailwind, and code Playground

by ipr101

JavaScript

var h = '5';


var go = {
    hello: function(h) {
        alert(h)
    }
}

var myObject = (function(x) {
    var value = 0;

    return {
        getValue: function() {
            return x;
        }
    };
}(h));

var h = '2';
alert(h);
alert(myObject.getValue());