<html>
<head>
<title>
Undefined Example 4
</title>
<script type="text/javascript">
var message; //this variable is declared but has a value of undefined
//make sure this variable isn't declared
//var age
alert(typeof message); //"undefined"
alert(typeof age); //"undefined"
</script>
</head>
<body>
</body>
</html>