QuestenaPractice that shows what to review next
Question 57

Which statements about reduce are true? Select all that apply.

  1. It always returns an array
  2. It always requires an explicit initial value
  3. It combines elements into one accumulated resultCorrect answer
  4. A supplied initial value starts the accumulatorCorrect answer

Explanation

reduce combines elements through an accumulator, and a supplied initial value starts that accumulation. Without one on a nonempty array, the first element becomes the starting accumulator rather than being combined as an ordinary later element immediately.

Continue with this test

Start practice
Question 57: Which statements about reduce are true? Select all that… · JavaScript Fundamentals · Questena