Imagine I have a numerical value like
let number = 13434235234334;
I'm interested in bit shifting it either to the left or right, for example:
number >> 2
or
number << 2
However, at a later point, I want to revert back to the original value of the number (assuming I know how many times I shifted it).
Is there a way to retrieve the original value of number
after performing the bitwise operations?