Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nitayneeman/f022dc93068e2bb668b2b00c49ae7486 to your computer and use it in GitHub Desktop.
Save nitayneeman/f022dc93068e2bb668b2b00c49ae7486 to your computer and use it in GitHub Desktop.
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