/*
JavaScript: A Beginner's Guide, Second Edition
By John Pollock
Publisher: McGraw-Hill,
Published December 2003, 550 pages,
ISBN 0072227907
*/
<HTML>
<HEAD>
</HEAD>
<BODY>
<SCRIPT language="JavaScript">
<!--
var paycheck=2000;
document.write(paycheck+"<BR>");
paycheck+=2000;
document.write(paycheck+"<BR>");
paycheck=paycheck-500;
document.write(paycheck+"<BR>");
paycheck=paycheck*0;
document.write(paycheck+"<BR>");
paycheck=paycheck+500;
document.write(paycheck+"<BR>");
paycheck-=80;
document.write(paycheck+"<BR>");
//-->
</SCRIPT>
</BODY>
</HTML>
|