I'm trying to port a Python library to Javascript, but stumbled on a numerical difference between the two..
With Python, 1057618395136 >> 16 == 16137976 With Javascript, 1057618395136 >> 16 == 16120
I read the the integer precision in Javascript is 53 bits, Math.pow(2, 53) == 9007199254740991), which is still in the range of the bifshift operation im trying to do.. What am i missing?