guest271314 (2019-05-12T16:30:12.000Z)
Terse ```add``` code ```const add = a => eval(a.join`+`)`.

Would fix JavaScript floating point number precision issues and implement
```BigDecimal``` first.

On Sat, May 11, 2019 at 11:21 PM Ates Goral <ates at magnetiq.com> wrote:

> (Percolating a comment I made in a thread earlier.)
>
> # Math.add
>
> ```
> Math.add = function (a, b) {
>   return a + b;
> };
> ```
>
> A why:
>
> With functional-style programming becoming more and more common with
> the advent of ES5 Array methods, the terse way to find the sum of
> items in an array can become even more terse with the introduction of
> `Math.add`:
>
> ```
> const sum = array.reduce((a, b) => a + b);
>
> // becomes:
> const sum = array.reduce(Math.add);
> ```
>
> # Math.sub
>
> ```
> Math.sub = function (a, b) {
>   return a - b;
> };
> ```
>
> A [not-so-strong] why:
>
> It's a common "LOL WTF JavaScript" refrain to point out that
> attempting to sort an array of numbers by using the default
> `Array.prototype.sort` results in an unexpected sort order unless a
> custom comparator is used. The presence of an out-of-the-box
> `Math.sub` could make the canonical "proper way to sort numbers" a bit
> terser:
>
> ```
> array.sort((a, b) => a - b);
>
> // becomes:
> array.sort(Math.sub);
> ```
>
> Ates
> _______________________________________________
> es-discuss mailing list
> es-discuss at mozilla.org
> https://mail.mozilla.org/listinfo/es-discuss
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.mozilla.org/pipermail/es-discuss/attachments/20190512/2b208831/attachment.html>
guest271314 at gmail.com (2019-05-12T16:36:07.906Z)
Terse ```add``` code ```const add = a => eval(a.join`+`)```.

Would fix JavaScript floating point number precision issues and implement
```BigDecimal``` first.