I\'ve got a really big number: 5799218898. And want to shift it right to 13 bits. So, windows-calculator or python gives me:
5799218898 >> 13 | 10001010010000
As Nicholas Zakas states:
Even though JavaScript numbers are technically stored in 64-bits, integer values are treated as if they’re 32 bits whenever bitwise operators are involved.