<html>
<head>
<title>Execution Context Example 7</title>
<script type="text/javascript">
var color = "blue";
function getColor(){
var color = "red";
return color;
}
alert(getColor()); //"red"
</script>
</head>
<body>
</body>
</html>