topical media & game development
basic-javascript-02-ch2-examp2.htm / htm
<html>
<body>
<script language="JavaScript" type="text/javascript">
var string1 = "Hello";
var string2 = "Goodbye";
alert(string1);
alert(string2);
string2 = string1;
alert(string1);
alert(string2);
string1 = "Now for something different";
alert(string1);
alert(string2);
</script>
</body>
</html>
(C) Æliens
20/2/2008
You may not copy or print any of this material without explicit permission of the author or the publisher.
In case of other copyright issues, contact the author.