JSFiddle - React, Tailwind, and code Playground
by PeeHaa
JavaScript
(function() {
var attackValue = 'some value';
function setValue() {
attackValue = 'some other value';
}
setValue();
console.log(attackValue); // this would output some value, because the function hasn;t run yet
})();