I would like to shift this unsigned number: 1479636484000 7 bits to the right. Is this possible in JavaScript?
Both
1479636484000 >> 7
and
1479636484000 >>> 7
returns an incorrect answer (for me). The correct answer should be 11559660031. I guess there's some sign bit involved here, and maybe the number is too large to be supported. But is there any clever way of getting around it?