topical media & game development

talk show tell print

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



  <html>
  <body>
  
  <script language="JavaScript" type="text/javascript">
  var firstNumber = 15;
  var secondNumber = 10;
  var answer;
  answer = 15 / 10;
  alert(answer);
  
  alert(15 / 10);
  
  answer = firstNumber / secondNumber;
  alert(answer);
  
  </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.