完整的默认运算符列表
| CoffeeScript | JavaScript 的 |
|---|---|
is, == |
=== |
isnt, != |
!== |
not |
! |
and |
&& |
or |
|| |
true, yes, on |
true |
false, no, off |
false |
@, this |
this |
of |
in |
in |
没有对应的 |
a ** b |
Math.pow(a, b) |
a // b |
Math.floor(a / b) |
a %% b |
(a % b + b) % b |