vote up 2 vote down star
1

I've read this (http://stackoverflow.com/quest...), so I know what bitwise operators are but I'm still not clear on how one might use them... Can anyone offer any real-world examples of where a bitwise operator would be useful in JavaScript?

Thanks.

Edit:

Just digging into the jQuery source I've found a couple of places where bitwise operators are used, for example: (only the & operator)

// Line 2756:
event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) ));

// Line 2101
var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1;
flag

5 Answers

vote up 5 vote down check

Example:

Parses hexadecimal value to get RGB color values.

var hex = 'ffaadd';
var rgb = parseInt(hex, 16); 

var red   = (rgb >> 16) & 0xFF;
var green = (rgb >> 8) & 0xFF;  
var blue  = rgb & 0xFF;
link|flag
vote up 4 vote down

Given Ajax, we can now see more and more complex code in JS. Here are a couple of instances where I have used bitwise operators:

  1. You could do some fast ip adress operations.

    //computes the broadcast address based on the mask and a host address
    broadcast = (ip & mask) | (mask ^ 0xFFFFFFFF)
    
    
    //converts a number to an ip adress 
    sprintf(ip, "%i.%i.%i.%i", ((ip_int >> 24) & 0x000000FF),
                             ((ip_int >> 16) & 0x000000FF),
                             ((ip_int >>  8) & 0x000000FF),
                             ( ip_int        & 0x000000FF));
    

Note: this is C code, but JS is almost identical

  1. CRC algorithms uses them a lot

Check out the wikipedia entry on this

  1. Screen resolution operations
link|flag
Do you have examples of you used bitwise operators in these situations? – thomasrutter Mar 17 at 12:53
vote up 3 vote down

Bitmasks.

Used extensively, for example, in JS events.

link|flag
vote up 2 vote down

You can use them for flipping a boolean value:

var foo = 1;
var bar = 0;
alert(foo ^= 1);
alert(bar ^= 1);

This is a bit silly though and for the most part bitwise operators do not have many applications in Javascript.

link|flag
1  
That's not silly. I use that to cycle through "on"/"off" states for images, divs, etc all the time. – Crescent Fresh Mar 17 at 16:46
vote up 0 vote down

I've used it once for a permissions widget. File permissions in unix are a bitmask, so to parse it, you need to use bit operations.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.