Skip to content

Instantly share code, notes, and snippets.

@robertcoopercode
Created January 8, 2019 23:50
Show Gist options
  • Save robertcoopercode/22c05faae0405dc308217740fb9612a4 to your computer and use it in GitHub Desktop.
Save robertcoopercode/22c05faae0405dc308217740fb9612a4 to your computer and use it in GitHub Desktop.
let decimalNumber: number = 42;
let binaryNumber: number = 0b101010; // => 42
let octalNumber: number = 0o52; // => 42
let hexadecimalNumber: number = 0x2a; // => 42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment