What does the >> symbol mean? On this page, there's a line that looks like this:
var i = 0, l = this.length >> 0, curr;
|
What does the
|
|||||||||||||
|
|
It's bitwise shifting. Let's take the number 7, which in binary is
Similarly, you can shift to the right: [Edit] In JavaScript, shifting by 0 bits will round the number down* (integer rounding) (Better phrased: it will convert the value to integer)
*: Unless the number is negative. Sidenote: since JavaScript's integers are 32-bit, avoid using bitwise shifts unless you're absolutely sure that you're not going to use large numbers. [Edit 2] |
|||||||||||||
|
|
Just like in many other languages |
|||
|
|