1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
|
---
title: Array.prototype.reduce()
slug: Web/JavaScript/Reference/Global_Objects/Array/reduce
tags:
- Array
- 配列メソッド
- ECMAScript 5
- JavaScript
- メソッド
- プロトタイプ
- Reduce
- リファレンス
- ポリフィル
browser-compat: javascript.builtins.Array.reduce
translation_of: Web/JavaScript/Reference/Global_Objects/Array/reduce
---
{{JSRef}}
**`reduce()`** メソッドは、配列のそれぞれの要素に対してユーザーが提供した「縮小」コールバック関数を呼び出します。その際、直前の要素における計算結果の返値を渡します。配列のすべての要素に対して縮小関数を実行した結果が単一の値が最終結果になります。
`reduce()` で一番わかりやすいのは、配列のすべての要素の和を返す場合でしょう。
縮小関数は配列を要素ごとに走査し、それぞれの段階で、前の段階の結果に現在の配列の値を加えていきます (この結果は、それ以前のすべての段階を合算したものです)。
次のインタラクティブサンプルで紹介します。
{{EmbedInteractiveExample("pages/js/array-reduce.html")}}
## 構文
```js
// アロー関数
reduce((previousValue, currentValue) => { ... } )
reduce((previousValue, currentValue, currentIndex) => { ... } )
reduce((previousValue, currentValue, currentIndex, array) => { ... } )
reduce((previousValue, currentValue, currentIndex, array) => { ... }, initialValue)
// コールバック関数
reduce(callbackFn)
reduce(callbackFn, initialValue)
// インラインコールバック関数
reduce(function callbackFn(previousValue, currentValue) { ... })
reduce(function callbackFn(previousValue, currentValue, currentIndex) { ... })
reduce(function callbackFn(previousValue, currentValue, currentIndex, array){ ... })
reduce(function callbackFn(previousValue, currentValue, currentIndex, array) { ... }, initialValue)
```
### 引数
- `callbackFn`
- : 4 つの引数を取る「縮小」関数です。
- *previousValue* (前回の `callbackfn` の呼び出し結果の値)
- *currentValue* (現在の要素の値)
- *currentIndex* (現在の位置) {{optional_inline}}
- *array* (走査する配列) {{optional_inline}}
- `initialValue` {{optional_inline}}
- : コールバックが初めて呼び出されたときの *previousValue* の初期値です。 `initialValue` が指定された場合は、 *currentValue* も配列の最初の値に初期化されます。 `initialValue` が指定され*なかった*場合、 *previousValue* は配列の最初の値で初期化され、 *currentValue* は配列の 2 番目の値で初期化されます。
### 返値
配列全体にわたって「縮小」コールバック関数を実行した結果の値です。
### 例外
{{jsxref("TypeError")}}: 配列に要素がなく、かつ `initialValue` が提供されなかった場合に発生します。
## 解説
ECMAScript の仕様書は、 `reduce()` の動作を次のように記述しています。
> *callbackfn* は、4 つの引数を取る関数でなければなりません。 `reduce` は、配列の最初の要素の後の各要素に対して、昇順にコールバックを関数として呼び出します。
>
> *callbackfn* は次の 4 つの引数で呼び出されます。
>
> - the *previousValue* (前回の *callbackfn* の呼び出し結果の値)
> - the *currentValue* (現在の要素の値)
> - the *currentIndex*
> - 走査中のオブジェクト
> そのコールバックが最初に呼び出されるとき、 *previousValue* と *currentValue* は以下の 2 通りのうちのどちらかになります。
> - *initialValue* が `reduce` の呼び出しによって与えられた場合、 *previousValue* は to *initialValue* と同じになり、 *currentValue* は配列の最初の値と等しくなります。
> - *initialValue* が与えられていない場合は、 *previousValue* は配列の最初の値と同じになり、 *currentValue* は 2 番目の値と同じになります。
> 配列に要素がなく、かつ *initialValue* が与えられていない場合は {{jsxref("TypeError")}} が発生します。
>
> `reduce` は、呼び出されたオブジェクトを直接は変更しませんが、 *callbackfn* の呼び出しによってオブジェクトが変更される可能性はあります。
>
> `reduce` で処理される要素の範囲は、 *callbackfn* が最初に呼び出される前に設定されます。 `reduce` の呼び出しが始まった後に配列に追加された要素は、 *callbackfn* が処理することはありません。配列の既存の要素が変更された場合、 *callbackfn* には `reduce` がその値を処理する時点の値が渡されます。 `reduce` が呼び出された後、処理されるまでに削除された要素は処理されません。
配列が (位置に関わらず) 1 つの要素しか持たず、*initialValue* が指定されなかった場合、または *initialValue* が指定されていても配列が空だった場合、 _`callbackfn`_ は*実行されずに*要素が返却されます。
*initialValue* が提供され、配列が空でない場合、 reduce メソッドは常に 0 の位置コールバック関数を呼び出し始めます。
*initialValue* が提供されなかった場合、 reduce メソッドは、次の例に示すように、長さが 1 より大きい配列、長さが 1 の配列、長さが 0 の配列に対して異なる動作をします。
```js
const getMax = (a, b) => Math.max(a, b);
// コールバックは 0 の位置から配列内の全要素に対して呼び出される
[1, 100].reduce(getMax, 50); // 100
[ 50].reduce(getMax, 10); // 50
// コールバックは 1 の位置に対して 1 度だけ呼び出される
[1, 100].reduce(getMax); // 100
// コールバックは呼び出されない
[ 50].reduce(getMax); // 50
[ ].reduce(getMax, 1); // 1
[ ].reduce(getMax); // TypeError
```
### reduce() の動作
`reduce()` を以下のように使うことを想像してください。
```js
[0, 1, 2, 3, 4].reduce(function(previousValue, currentValue, currentIndex, array) {
return previousValue + currentValue
})
```
コールバック関数は 4 回呼び出され、各回の引数の内容は以下のようになります。
<table class="standard-table">
<thead>
<tr>
<th scope="col">
<code><var>callback</var></code> の反復処理
</th>
<th scope="col">
<code><var>previousValue</var></code>
</th>
<th scope="col">
<code><var>currentValue</var></code>
</th>
<th scope="col">
<code><var>currentIndex</var></code>
</th>
<th scope="col">
<code><var>array</var></code>
</th>
<th scope="col">返値</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">初回の呼出し</th>
<td><code>0</code></td>
<td><code>1</code></td>
<td><code>1</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>1</code></td>
</tr>
<tr>
<th scope="row">2 回目の呼出し</th>
<td><code>1</code></td>
<td><code>2</code></td>
<td><code>2</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>3</code></td>
</tr>
<tr>
<th scope="row">3 回目の呼出し</th>
<td><code>3</code></td>
<td><code>3</code></td>
<td><code>3</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>6</code></td>
</tr>
<tr>
<th scope="row">4 回目の呼出し</th>
<td><code>6</code></td>
<td><code>4</code></td>
<td><code>4</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>10</code></td>
</tr>
</tbody>
</table>
`reduce()` の返値は、コールバック呼び出しの最後の返値である (`10`) となるでしょう。
通常の関数の代わりに{{jsxref("Functions/Arrow_functions", "アロー関数","",1)}}を指定することができます。下記のコードは上記のコードと同じ結果を返します。
```js
[0, 1, 2, 3, 4].reduce( (previousValue, currentValue, currentIndex, array) => previousValue + currentValue )
```
*initialValue* を `reduce()` の 2 つ目の引数に渡した場合は、結果は次のようになります。
```js
[0, 1, 2, 3, 4].reduce((previousValue, currentValue, currentIndex, array) => {
return previousValue + currentValue
}, 10)
```
<table class="standard-table">
<thead>
<tr>
<th scope="col">
<code><var>callback</var></code> の反復処理
</th>
<th scope="col">
<code><var>previousValue</var></code>
</th>
<th scope="col">
<code><var>currentValue</var></code>
</th>
<th scope="col">
<code><var>currentIndex</var></code>
</th>
<th scope="col">
<code><var>array</var></code>
</th>
<th scope="col">返値</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">初回の呼出し</th>
<td><code>10</code></td>
<td><code>0</code></td>
<td><code>0</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>10</code></td>
</tr>
<tr>
<th scope="row">2 回目の呼出し</th>
<td><code>10</code></td>
<td><code>1</code></td>
<td><code>1</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>11</code></td>
</tr>
<tr>
<th scope="row">3 回目の呼出し</th>
<td><code>11</code></td>
<td><code>2</code></td>
<td><code>2</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>13</code></td>
</tr>
<tr>
<th scope="row">4 回目の呼出し</th>
<td><code>13</code></td>
<td><code>3</code></td>
<td><code>3</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>16</code></td>
</tr>
<tr>
<th scope="row">5 回目の呼出し</th>
<td><code>16</code></td>
<td><code>4</code></td>
<td><code>4</code></td>
<td><code>[0, 1, 2, 3, 4]</code></td>
<td><code>20</code></td>
</tr>
</tbody>
</table>
この場合の `reduce()` の返値は `20` となります。</p>
## 例
### 配列内の値の合計値を出す
```js
let sum = [0, 1, 2, 3].reduce(function (previousValue, currentValue) {
return previousValue + currentValue
}, 0)
// sum is 6
```
また、アロー関数を用いて書くこともできます。
```js
let total = [ 0, 1, 2, 3 ].reduce(
( previousValue, currentValue ) => previousValue + currentValue,
0
)
```
### オブジェクトの配列の値の合計値を出す
オブジェクトの配列に含まれた値の合計値を出すには、すべての項目を関数内で取得できるようにするために *initialValue* を指定する**必要があります**。
```js
let initialValue = 0
let sum = [{x: 1}, {x: 2}, {x: 3}].reduce(function (previousValue, currentValue) {
return previousValue + currentValue.x
}, initialValue)
console.log(sum) // logs 6
```
また、アロー関数を用いて書くこともできます。
```js
let initialValue = 0
let sum = [{x: 1}, {x: 2}, {x: 3}].reduce(
(previousValue, currentValue) => previousValue + currentValue.x
, initialValue
)
console.log(sum) // logs 6
```
### 二次元配列を一次元配列にする
```js
let flattened = [[0, 1], [2, 3], [4, 5]].reduce(
function(previousValue, currentValue) {
return previousValue.concat(currentValue)
},
[]
)
// flattened is [0, 1, 2, 3, 4, 5]
```
また、アロー関数を用いて書くこともできます。
```js
let flattened = [[0, 1], [2, 3], [4, 5]].reduce(
( previousValue, currentValue ) => previousValue.concat(currentValue),
[]
)
```
### オブジェクトの値のインスタンスを数える
```js
let names = ['Alice', 'Bob', 'Tiff', 'Bruce', 'Alice']
let countedNames = names.reduce(function (allNames, name) {
if (name in allNames) {
allNames[name]++
}
else {
allNames[name] = 1
}
return allNames
}, {})
// countedNames is:
// { 'Alice': 2, 'Bob': 1, 'Tiff': 1, 'Bruce': 1 }
```
### プロパティによってオブジェクトをグループ化
```js
let people = [
{ name: 'Alice', age: 21 },
{ name: 'Max', age: 20 },
{ name: 'Jane', age: 20 }
];
function groupBy(objectArray, property) {
return objectArray.reduce(function (acc, obj) {
let key = obj[property]
if (!acc[key]) {
acc[key] = []
}
acc[key].push(obj)
return acc
}, {})
}
let groupedPeople = groupBy(people, 'age')
// groupedPeople is:
// {
// 20: [
// { name: 'Max', age: 20 },
// { name: 'Jane', age: 20 }
// ],
// 21: [{ name: 'Alice', age: 21 }]
// }
```
### スプレッド演算子と initialValue を使ってオブジェクトの配列に含まれる配列を結合させる
```js
// friends - an array of objects
// where object field "books" is a list of favorite books
let friends = [{
name: 'Anna',
books: ['Bible', 'Harry Potter'],
age: 21
}, {
name: 'Bob',
books: ['War and peace', 'Romeo and Juliet'],
age: 26
}, {
name: 'Alice',
books: ['The Lord of the Rings', 'The Shining'],
age: 18
}]
// allbooks - list which will contain all friends' books +
// additional list contained in initialValue
let allbooks = friends.reduce(function(previousValue, currentValue) {
return [...previousValue, ...currentValue.books]
}, ['Alphabet'])
// allbooks = [
// 'Alphabet', 'Bible', 'Harry Potter', 'War and peace',
// 'Romeo and Juliet', 'The Lord of the Rings',
// 'The Shining'
// ]
```
### 配列内の重複要素を除去する
> **Note:** {{jsxref("Set")}} と {{jsxref("Array.from()")}} に対応している環境を使っている場合は、`let orderedArray = Array.from(new Set(myArray))` を使うことで重複要素を除去された配列を取得することができます。
```js
let myArray = ['a', 'b', 'a', 'b', 'c', 'e', 'e', 'c', 'd', 'd', 'd', 'd']
let myArrayWithNoDuplicates = myArray.reduce(function (previousValue, currentValue) {
if (previousValue.indexOf(currentValue) === -1) {
previousValue.push(currentValue)
}
return previousValue
}, [])
console.log(myArrayWithNoDuplicates)
```
### .filter().map() を .reduce() で置き換える
{{jsxref("Array.filter()")}} を使用した後で {{jsxref("Array.map()")}} を使用すると配列を二度走査しますが、{{jsxref("Array.reduce()")}} では同じ効果を一度の操作で実現することができ、もっと効率的です。(for ループが好きなのであれば、{{jsxref("Array.forEach()")}} で一度の操作で filter と map を行うことができます)。
```js
const numbers = [-5, 6, 2, 0,];
const doubledPositiveNumbers = numbers.reduce((previousValue, currentValue) => {
if (currentValue > 0) {
const doubled = currentValue * 2;
previousValue.push(doubled);
}
return previousValue;
}, []);
console.log(doubledPositiveNumbers); // [12, 4]
```
### シーケンス上の Promise を動かす
```js
/**
* Runs promises from array of functions that can return promises
* in chained manner
*
* @param {array} arr - promise arr
* @return {Object} promise object
*/
function runPromiseInSequence(arr, input) {
return arr.reduce(
(promiseChain, currentFunction) => promiseChain.then(currentFunction),
Promise.resolve(input)
)
}
// promise function 1
function p1(a) {
return new Promise((resolve, reject) => {
resolve(a * 5)
})
}
// promise function 2
function p2(a) {
return new Promise((resolve, reject) => {
resolve(a * 2)
})
}
// function 3 - will be wrapped in a resolved promise by .then()
function f3(a) {
return a * 3
}
// promise function 4
function p4(a) {
return new Promise((resolve, reject) => {
resolve(a * 4)
})
}
const promiseArr = [p1, p2, f3, p4]
runPromiseInSequence(promiseArr, 10)
.then(console.log) // 1200
```
### パイプによって関数を合成する
```js
// Building-blocks to use for composition
const double = x => x + x
const triple = x => 3 * x
const quadruple = x => 4 * x
// Function composition enabling pipe functionality
const pipe = (...functions) => input => functions.reduce(
(acc, fn) => fn(acc),
input
)
// Composed functions for multiplication of specific values
const multiply6 = pipe(double, triple)
const multiply9 = pipe(triple, triple)
const multiply16 = pipe(quadruple, quadruple)
const multiply24 = pipe(double, triple, quadruple)
// Usage
multiply6(6) // 36
multiply9(9) // 81
multiply16(16) // 256
multiply24(10) // 240
```
### reduce を使って map メソッドを書く
```js
if (!Array.prototype.mapUsingReduce) {
Array.prototype.mapUsingReduce = function(callback, initialValue) {
return this.reduce(function(mappedArray, currentValue, currentIndex, array) {
mappedArray[index] = callback.call(initialValue, currentValue, currentIndex, array)
return mappedArray
}, [])
}
}
[1, 2, , 3].mapUsingReduce(
(currentValue, currentIndex, array) => currentValue + currentIndex + array.length
) // [5, 7, , 10]
```
## 仕様書
{{Specifications}}
## ブラウザーの互換性
{{Compat}}
## 関連情報
- `Array.prototype.reduce` のポリフィルが [`core-js`](https://github.com/zloirock/core-js#ecmascript-array) で利用できます
- {{jsxref("Array.prototype.reduceRight()")}}
|