Define variables, assign values and output : JavaScript DHTML examples (example source code) » Language Basics » Number Data Type

JavaScript DHTML
C++
Java Products
Java Articles
JavaScript DHTML Home  »   Language Basics   » [  Number Data Type  ]   
 



Define variables, assign values and output

Please note that some example is only working under IE or Firefox.

/*
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>
Related examples in the same category
1.   Dividing by Zero
2.  Add Four Numbers from an HTML Form (and Display the Results)
3.  Add characters
4.  Complex class to represent complex numbers
5.  A Function That Returns the Sum of Three Numbers (Stripped-Down Version)
6.   Concatenating Variables and Displaying the Value Contained
7.  JavaScript Loan Calculator
8.  Factorials
9.  Converting a Number to a String
10.  Creating Number Objects Rather than Performing String-to-Number Conversions
11.  Using toString() with Radix Values
12.  Using JavaScript Integers
13.  Conversion of Logical Values to Numeric Values
14.  Using Floating-Point Numbers
15.  Automatic Conversion between Types
16.  Explicit Conversion Functions
17.  Date Object Calculations
18.  Operator Precedence and Different Data Types
19.  Converting Base 10 to Base 16 Using Bitwise Operators
20.  Number Calculation
21.  Format a number
22.  Format a number 2
23.  Decimal to 2 Hex








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.