Home >Web Front-end >JS Tutorial >JavaScript displacement operator (unsigned) >>> Detailed explanation of how to use three greater than signs_javascript skills
d3.bisector(accessor) is a specified parameter accessor or comparator function that returns a bisected object. The returned object has two properties: left and right. Similar to bisectLeft and bisectRight methods respectively.
This method works on arrays of objects and not on primitive simple arrays.
N>>>1 means that the binary number of N is shifted to the right by one bit, and the middle value can be obtained by shifting the binary number to the right by one bit.
For example
10>>>1
The binary code for 10 is 1010
Moved one position to the right is 0101
i.e. 5