Skip to content

Instantly share code, notes, and snippets.

@Ynote
Last active November 18, 2018 11:01
Show Gist options
  • Save Ynote/47916ef388a77aebaf8cedf4ba140b50 to your computer and use it in GitHub Desktop.
Save Ynote/47916ef388a77aebaf8cedf4ba140b50 to your computer and use it in GitHub Desktop.
Number examples
typeof 42e42
// => 'number'
typeof 0x2a
// => 'number'
typeof Infinity
// => 'number'
typeof +''
// => 'number'
typeof NaN
// => 'number'
// What the hell? (╯°□°)╯︵ ┻━┻
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment