Home arrow JavaScript arrow Page 3 - The Power of Javascript: Operators continued
JAVASCRIPT

The Power of Javascript: Operators continued


In the last article we talked about some of the unary and binary operators available in Javascript, namely the arithmetic operators, the comparison operators and the increment/decrement operators. In this article we continue our discussion of the Javascript operators; we will discuss how computers represent data, and bitwise operators.

Author Info:
By: Michael Youssef
Rating: 5 stars5 stars5 stars5 stars5 stars / 8
July 26, 2005
TABLE OF CONTENTS:
  1. · The Power of Javascript: Operators continued
  2. · Bitwise Operators
  3. · The Bitwise Operators Example
  4. · Assignment Operators
  5. · Assignment Operators Example

print this article
SEARCH DEVARTICLES

TOOLS YOU CAN USE

advertisement
The Power of Javascript: Operators continued - The Bitwise Operators Example
(Page 3 of 5 )

Copy the following code, then paste it in a file and save it as an HTML document:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
  <head>
    <title>Hello World</title>
    <script language="JavaScript" type="text/javascript">
      // x represented in binary as 00000101
      var x = 5;
      // y represented in binary as 00001001
      var y = 9;
      result = x & y;
      document.write(result + "<br>");
      result = x | y;
      document.write(result + "<br>");
      result = x ^ y;
      document.write(result + "<br>");
      result = ~4294967292;
      document.write(result + "<br>");
      result = y << 2;
      document.write(result + "<br>");
      result = y >> 2;
      document.write(result + "<br>"); 
    </script>
  </head>
  <body>
  </body>
</html>

When you load this file into your browser you will get the following values:

There's nothing special about this example because we have explained the bitwise operators in the above section. As I said before, the bitwise operators do not have much use in Javascript when you program in the browser, but it's part of the language and we should understand what these operators do. Next, we discuss the assignment operators.


blog comments powered by Disqus
JAVASCRIPT ARTICLES

- More Top jQuery Tutorials for Beginners
- More Top jQuery Plugins for Menus
- Top jQuery Tutorials for Beginners
- New UI Framework and SDK for JavaScript Rele...
- JavaScript OpenPGP Tool, Node.js 0.6.3 Avail...
- Yahoo Releases Cocktails Language and Develo...
- Customizing jQuery Slideshows: Dynamic Contr...
- Customizing jQuery Slideshows: the animate()...
- Customizing jQuery Slideshows: slideUp() and...
- Customizing jQuery Slideshows: hide() and sh...
- Web Workers: Performing Calculations in Para...
- More Top JavaScript Frameworks and Libraries
- More Dynamic jQuery Styling Techniques
- The Top JavaScript Libraries
- The Top JavaScript Frameworks

Dev Articles Forums 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Weekly Newsletter
 
Developer Updates  
Free Website Content 
Contact Us 
Site Map 
Privacy Policy 
Support 



© 2003-2012 by Developer Shed. All rights reserved. DS Cluster 5 - Follow our Sitemap
Popular Web Development Topics
All Web Development Tutorials