| expression | JavaScript | CoffeeScript | LiveScript |
|---|---|---|---|
1 + 2 |
3 |
3 |
3 |
1 + "2" |
'12' |
'12' |
'12' |
"2" + 1 |
'21' |
'21' |
'21' |
1 * 2 |
2 |
2 |
2 |
"1" * 2 |
2 |
2 |
'11' |
1 * "2" |
2 |
2 |
'' |
1 / 2 |
0.5 |
0.5 |
0.5 |
"1" / 2 |
0.5 |
0.5 |
0.5 |
1 / "2" |
0.5 |
0.5 |
[ '1' ] |
Last active
August 29, 2015 14:06
-
-
Save Frost/af1fb5317059e74b9dbb to your computer and use it in GitHub Desktop.
JavaScript vs CoffeeScript vs LiveScript - Type-related arithmetic gotchas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment