I am trying to set and get the value of a global variables. Here is the jsfiddle
HTML
<input type="button" value="setValue" onClick="setValue()">
<input type="button" value="getValue" onClick="getValue()">
JS
//setting global variable
var theValues = '';
function setValue() {
theValues = "test";
alert(theValues);
}
function getValue() {
alert(theValues);
}
But it is not throwing an error and not working