Run ❯
Get your own Node server
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
// BigInt type example (ES2020+) const hugeNumber = BigInt('9007199254740991'); // Output the value console.log(hugeNumber); //Code below will not work unless specified in tsconfig.json //const bigNumber: bigint = 9007199254740991n; Will not work unless //console.log(bigNumber);
9007199254740991n