md`## Array Reduce: A.reduce(reducerFn, initialValue)
This function executes a reducer function (that you provide) on each element of the array, returns a single output value.
The reducer functions takes one extra argument compared to other callback functions mentioned above. They are
- Accumulator (acc)
- Current Value (cur)
- Current Index (idx)
- Source Array (src)
The accumulator must be used in the reducerFn to accumulate value.
*initialValue* is the starting value that the Accumulator takes.
For example: to compute the average of a number array A, we can use the following statement:
(A.reduce((acc,cur)=>acc = acc+cur, 0))/A.length
`