vote up 1 vote down star

What does the following Javascript statement do to a?

a >>>= b;
flag

68% accept rate
4  
Really, you couldn't use google to find that information? – jeffamaphone Oct 27 at 20:27
12  
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 at 20:29
5  
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 Swangren Oct 27 at 20:30
5  
I can imagine why a straightforward attempt to use Google would fail - have you ever tried to search for punctuation? – Pavel Minaev Oct 27 at 20:30
5  
Why don't you ignorant morons try searching for crazy syntax like this before you instruct me on how to use the Internet effectively. – Josh Stodola Oct 27 at 20:34
show 3 more comments

4 Answers

vote up 9 vote down check

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|flag
Thank you! This is some crazy complex encoding/decoding code I am looking at here. – Josh Stodola Oct 27 at 20:35
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). – Elijah Grey Oct 28 at 0:12
@Elijah: the assumption is that a is a placeholder for an arbitrary expression, not just an identifier. – Pavel Minaev Oct 28 at 2:36
vote up 2 vote down

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|flag
vote up 5 vote down

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|flag
Thank you for providing that example! – Josh Stodola Oct 27 at 20:43
Holy crap, this is some complex stuff! o_0 – KyleFarris Oct 27 at 21:03
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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