topical media & game development

talk show tell print

basic-javascript-02-ch2-examp1.htm / htm



  <html>
  <head>
  </head>
  <body>
  
  <script language="JavaScript" type="text/javascript">
  
  var myFirstVariable;
  
  myFirstVariable = "Hello";
  alert(myFirstVariable);
  
  myFirstVariable = 54321;
  alert(myFirstVariable);
  
  </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.