Skip to content Skip to sidebar Skip to footer
Showing posts with the label Bit Manipulation

Javascript's Shift Right With Zero-fill Operator (>>>) Yielding Unexpected Result

First, (-1 >>> 0) === (2**32 - 1) which I expect is due to adding a new zero to the left, … Read more Javascript's Shift Right With Zero-fill Operator (>>>) Yielding Unexpected Result

Javascript Endian Encoding?

A response on SO got me thinking, does JavaScript guarantee a certain endian encoding across OSs an… Read more Javascript Endian Encoding?

Unsigned Right Shift / Zero-fill Right Shift / >>> In PHP (Java/JavaScript Equivalent)

Before flagging this as a duplicate, please read below, and check my code * my updated code! So m… Read more Unsigned Right Shift / Zero-fill Right Shift / >>> In PHP (Java/JavaScript Equivalent)