JavaScript_Samples
JavaScript_Samples
JavaScript
var myVar = "this is a global variable";
function hoistingSampleAsInterpreted() {
var myVar = "this is a local variable";
alert(myVar);
}
var myVar = "this is a global variable";
function hoistingSampleAsInterpreted() {
var myVar = "this is a local variable";
alert(myVar);
}