var myVar = "my global variabl" function hoistingSampleAsInterpreted() { var myVar; alert(myVar); //value is undefined myVar = "my local variable"; //value is not undefined alert(myVar); }