Created
March 28, 2021 20:39
-
-
Save nitayneeman/f022dc93068e2bb668b2b00c49ae7486 to your computer and use it in GitHub Desktop.
This file contains 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 bigintAsBinary = 0b100000000000000000000000000000000000000000000000000000n; | |
console.log(bigintAsBinary); // 9007199254740992n | |
const bigintAsOctal = 0o400000000000000000n; | |
console.log(bigintAsOctal); // 9007199254740992n | |
const bigintAsHexadecimal = 0x20000000000000n; | |
console.log(bigintAsHexadecimal); // 9007199254740992n |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment