Created
September 17, 2024 10:39
-
-
Save maxsimych/2167cd1f90f7dfc1ce939a11cc6cf1b7 to your computer and use it in GitHub Desktop.
Convert unsigned to signed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const convertToSigned = num => num << 24 >> 24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment