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
// Number type examples let decimal: number = 6; let hex: number = 0xf00d; // Hexadecimal let binary: number = 0b1010; // Binary let octal: number = 0o744; // Octal let float: number = 3.14; // Floating point // Output the values console.log(decimal); console.log(hex); console.log(binary); console.log(octal); console.log(float);
6 61453 10 484 3.14