Variable scope : Variable Definition « Language Basics « JavaScript DHTML






Variable scope

  
<html>
<head>
<script language="JavaScript">
<!--
var myVar = "Outside";
function testFunction() {
  var myVar = "Inside";
  alert("this.myVar: " + this.myVar);
  alert("myVar: " + myVar);
}
testFunction();
//-->
</script>
</head>
</html>


           
         
    
  








Related examples in the same category

1.The Effects of Local and Global Variables
2.Use of Global and Local Variables
3.Event Handler with Multiple Statements in Attribute Value
4.Global and Local Variable Scope Demonstration
5.Global Versus Local Scope of a Variable
6.Variable scoping
7.Get the type of a variable
8.Global scope and page scope
9.String value is passed by value, while the array is passed by reference