Using JavaScript Integers : Number Data Type « Language Basics « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Language Basics » Number Data Type 
Using JavaScript Integers

<HTML>
<HEAD>
<TITLE>Using JavaScript integers</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="JavaScript">
<!--
document.write("0xab00 + 0xcd = ")
document.write(0xab00 0xcd)
document.write("<BR>")
document.write("0xff - 0123 = ")
document.write(0xff 0123)
document.write("<BR>")
document.write("-0x12 = ")
document.write(-0x12)
// -->
</SCRIPT>
</BODY>
</HTML>
           
       
Related examples in the same category
1. Define variables, assign values and output
2. Dividing by Zero
3. Add Four Numbers from an HTML Form (and Display the Results)
4. Add characters
5. Complex class to represent complex numbers
6. A Function That Returns the Sum of Three Numbers (Stripped-Down Version)
7.  Concatenating Variables and Displaying the Value Contained
8. JavaScript Loan Calculator
9. Factorials
10. Converting a Number to a String
11. Creating Number Objects Rather than Performing String-to-Number Conversions
12. Using toString() with Radix Values
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
ww_w._j_av_a2_s.c_om__ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.