javascript right shift without sign extension code example
Example: right shift operator js
(A >> B) == Math.floor(A / (2 ** B)) == Math.floor(A / Math.pow(2, B))
(A >> B) == Math.floor(A / (2 ** B)) == Math.floor(A / Math.pow(2, B))