<HTML>
<SCRIPT LANGUAGE="JavaScript">
<!--
//Initialize global variables
color = "global";
var size = 15;
function myFunction() {
//Declare and set variables inside function
color = "set in a function";
price = "1111";
var size = 17;
document.write("The ",size," inch ",color);
document.write(" price is ",price);
}
myFunction();
document.write("<BR>The ",size," inch ",color);
document.write(" price is ",price);
-->
</SCRIPT>
</HTML>
|