JSFiddle - React, Tailwind, and code Playground

JavaScript

var foo = "hello";
function fxn(){
   alert(foo);
   foo = "test";
}

fxn();