Created
July 25, 2014 03:16
-
-
Save dgtlmonk/305179bbc075933bc6c8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CoffeeScript JavaScript | |
is === | |
isnt !== | |
not ! | |
and && | |
or || | |
true, yes, on true | |
false, no, off false | |
@, this this | |
of in | |
in no JS equivalent | |
a ** b Math.pow(a, b) | |
a // b Math.floor(a / b) | |
a %% b (a % b + b) % b |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment