JSFiddle - React, Tailwind, and code Playground

HTML

<input type="button" value="setValue" onClick="setValue()">
<input type="button" value="getValue" onClick="getValue()">

JavaScript

//setting global variable
var theValues = '';

function setValue() {
    theValues = "test";
    alert(theValues);
}

function getValue() {
    alert(theValues);
}