Matthew Morgan (2019-08-12T20:00:09.000Z)
JS needs a modulo operator. It currently has the remainder operator `%`
which works in most cases except for negative values. I believe the the
`%%` would work great and be easy to remember.

let x = (-13) %% 64;
is equivalent to
let x = ((-13 % 64) + 64) % 64;
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20190812/ec877f98/attachment.html>
mmm211 at zips.uakron.edu (2019-08-13T14:39:51.337Z)
JS needs a modulo operator. It currently has the remainder operator `%`
which works in most cases except for negative values. I believe 
`%%` would work great and be easy to remember.

let x = (-13) %% 64;

is equivalent to

let x = ((-13 % 64) + 64) % 64;
mmm211 at zips.uakron.edu (2019-08-12T20:06:06.681Z)
JS needs a modulo operator. It currently has the remainder operator `%`
which works in most cases except for negative values. I believe the the
`%%` would work great and be easy to remember.

let x = (-13) %% 64;

is equivalent to

let x = ((-13 % 64) + 64) % 64;