blob: 0bc9b775aba3e8a01b72df65ec66fd22b849b94b [file] [log] [blame]
x = 0; // A global variable
var y = 'Hello!'; // Another global variable
function f(){
var z = 'foxes'; // A local variable
twenty = 20; // Global because keyword var is not used
return x; // We can use x here because it is global
}
// The value of z is no longer available