diff --git a/docs/v2/index.html b/docs/v2/index.html index 4e736d4319..62211b3ee3 100644 --- a/docs/v2/index.html +++ b/docs/v2/index.html @@ -2493,7 +2493,7 @@

Operators and Aliases

As a shortcut for this.property, you can use @property.

You can use in to test for array presence, and of to test for JavaScript object-key presence.

In a for loop, from compiles to the ES2015 of. (Yes, it’s unfortunate; the CoffeeScript of predates the ES2015 of.)

-

To simplify math expressions, ** can be used for exponentiation and // performs integer division. % works just like in JavaScript, while %% provides “dividend dependent modulo”:

+

To simplify math expressions, ** can be used for exponentiation and // performs floor division. % works just like in JavaScript, while %% provides “dividend dependent modulo”: