Skip to content

Instantly share code, notes, and snippets.

@azizshamim
Created February 20, 2013 16:56
Show Gist options
  • Save azizshamim/4997055 to your computer and use it in GitHub Desktop.
Save azizshamim/4997055 to your computer and use it in GitHub Desktop.
Reasons I hate javascript
> "1.0" + 1.0
'1.01'
> "1.0" + "1.0"
'1.01.0'
> "1.0" + 2
'1.02'
> 2 + "1.0"
'21.0'
> 2 + 2
4
>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment