Skip to content

Instantly share code, notes, and snippets.

@edysegura
Last active September 16, 2015 23:01
Show Gist options
  • Save edysegura/cd8f8acbb3bd29b699c0 to your computer and use it in GitHub Desktop.
Save edysegura/cd8f8acbb3bd29b699c0 to your computer and use it in GitHub Desktop.
[JS] JavaScript Ninja Tricks
//convert a string to number
+'2' //2
+'2a' //NaN
//convert anything to boolean
!!'it will be converted to true' //true
!!'' //false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment