I'm reading through the underscore.js code. I found this:
var mid = (low + high) >> 1;
What does >> 1 do? Why is it useful?
|
I'm reading through the underscore.js code. I found this:
What does
| |||
|
feedback
|
|
It shifts the bits in the left side to the right by one bit. It is equivalent to dividing by 2. In 'Ye olden times' this was faster than simply dividing, though I doubt it would make a whole lot of difference in underscore's case. | |||||||||||
feedback
|
|
That's a bitwise right shift. For integers, it is equivalent to dividing by two; for JavaScript numbers, it is roughly the same as | |||||
feedback
|
|
I would be remiss if I didn't point out a subtle bug with using | |||||||
feedback
|
|
It's probably there to keep the value an integer. Dividing by 2 here may convert the result to a floating point number in some cases, for example, if The two operations are not exactly equivalent:
| |||
|
feedback
|
>> 1would be more efficient than/ 2. In most languages, that would be incorrect; for example, a C compiler would probably generate the same code for both. I don't know whether the same applies to JavaScript. – Keith Thompson Sep 17 '11 at 5:35Math.floor. – mu is too short Sep 17 '11 at 5:40