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 examples (ES2020+) const bigNumber: bigint = 9007199254740991n; const hugeNumber = BigInt(9007199254740991); // Alternative syntax // Output the values console.log(bigNumber); console.log(hugeNumber);
9007199254740991n 9007199254740991n