Michael Haufe (2013-07-25T07:13:49.000Z)
In 2008 I first proposed the addition of an integer division operator to
the language. At the time Brendan noted his regret for this oversight and
desire for the operator as well. I am not seeing this operator available in
the current draft. Can/will this be rectified?

a div b = (a - a % b) / b
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20130725/88db0e77/attachment.html>
domenic at domenicdenicola.com (2013-07-25T19:55:47.108Z)
In 2008 I first proposed the addition of an integer division operator to
the language. At the time Brendan noted his regret for this oversight and
desire for the operator as well. I am not seeing this operator available in
the current draft. Can/will this be rectified?

```js
a div b = (a - a % b) / b
```