-
Notifications
You must be signed in to change notification settings - Fork 1
reduce
wolfram77 edited this page Mar 31, 2020
·
24 revisions
Reduces values to a single value.
iterable.reduce(x, fn, [ths]);
// x: an iterable
// fn: reduce function (acc, v, i, x)
// acc: initial value
const iterable = require('extra-iterable');
var x = [1, 2, 3, 4];
[...iterable.reduce(x, (acc, v) => acc+v)];
// 10
[...iterable.reduce(x, (acc, v) => acc+v, 100)];
// 110