Javascript reduce values from inputs into array replacing if needed code example

Example 1: syntax of reduce in js

[1,2,3,4,5].reduce((acc, current)=>acc+current, 0)

Example 2: reduce javascript

//note idx and sourceArray are optional
const sum = array.reduce((accumulator, element[, idx[, sourceArray]]) => {
	//arbitrary example of why idx might be needed
	return accumulator + idx * 2 + element 
}, 0);

Example 3: javascript, reduce

const myReduce = myArray.reduce((acc, item) => {
	acc += item
})