Skip to content

Instantly share code, notes, and snippets.

@Frost
Last active August 29, 2015 14:06
Show Gist options
  • Select an option

  • Save Frost/af1fb5317059e74b9dbb to your computer and use it in GitHub Desktop.

Select an option

Save Frost/af1fb5317059e74b9dbb to your computer and use it in GitHub Desktop.
JavaScript vs CoffeeScript vs LiveScript - Type-related arithmetic gotchas
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' ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment