I have this piece of javascript code that I am trying to understand
return ( n >>> 0 ) * 2.34e10;
So what does >>> mean?
And thanks in advance ... this is my first question on SO
|
I have this piece of javascript code that I am trying to understand
So what does >>> mean? And thanks in advance ... this is my first question on SO |
|||
|
|
|
It's a zero-fill right shift. This won't do anything to positive whole numbers or 0, but it does funny things on negative numbers (because the most significant bit changes to zero).
It should be noted (thanks Andy!) that bit shifting in JavaScript converts the arguments to signed 32-bit integers before doing the shifting. Therefore
|
|||||||||||||||
|
|
It's a bitwise operator. It means shift n by 0 bits. Not sure what it's trying to do in the instance you show.
|
|||||
|