up vote 1 down vote favorite
share [g+] share [fb]

What does the following Javascript statement do to a?

a >>>= b;
link|improve this question

80% accept rate
4  
Really, you couldn't use google to find that information? – jeffamaphone Oct 27 '09 at 20:27
3  
Have you tried Googling ">>>="? – Tinister Oct 27 '09 at 20:29
14  
Part of the goal of this site is to be the ultimate reference; I don't think simple questions are inappropriate. And Google will ignore ">>>" in a query; you'd have to know to search on "operators" or "bitwise operators". – JacobM Oct 27 '09 at 20:29
7  
It is sometimes hard to find operator definitions through google as the operator itself will be treated as 'junk' by the search engine. I remember once trying to find out what the splat operator did in Ruby. Of course, I did not know that it was called the splat operator, and try searching for "*" :) – Ed S. Oct 27 '09 at 20:30
6  
I can imagine why a straightforward attempt to use Google would fail - have you ever tried to search for punctuation? – Pavel Minaev Oct 27 '09 at 20:30
show 2 more comments
feedback

4 Answers

up vote 9 down vote accepted

It does the same thing as this:

a = a >>> b;

Except that a is only evaluated once (which has observable difference if its evaluation involves any side effects).

And >>> is unsigned (logical) right shift.

link|improve this answer
Thank you! This is some crazy complex encoding/decoding code I am looking at here. – Josh Stodola Oct 27 '09 at 20:35
1  
a is only "evaluated once" for a = a >>> b too. It's not like there is a second time where it is looked up. Both expressions return the expression's return value, not a (which was set to the value). – Eli Grey Oct 28 '09 at 0:12
@Elijah: the assumption is that a is a placeholder for an arbitrary expression, not just an identifier. – Pavel Minaev Oct 28 '09 at 2:36
feedback

I right shifts the value in a the number of bits specified by the value in b, without maintaining the sign.

It's like the >>= operator that rights shifts a value, only that one does not change the sign of the number.

Example:

var a = -1;

// a now contains -1, or 11111111 11111111 11111111 11111111 binary

var b = 1;
a >>>= b;

// a now contains 2147483647, or 01111111 11111111 11111111 11111111 binary.
link|improve this answer
Thank you for providing that example! – Josh Stodola Oct 27 '09 at 20:43
Holy crap, this is some complex stuff! o_0 – KyleFarris Oct 27 '09 at 21:03
feedback

It's a bitwise operator called zero-fill right shift. It will shift the binary representation of a to the right by b places, and replace the empty items with zeros. Then the result will be assigned to a.

link|improve this answer
feedback

Crockford points out that while JavaScript has bitwise operators like >>>, using them on its native double-precision floating point numbers implies converting back and forth to integers internally. They will not be as efficient as in other languages with native integer data types.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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