📜  如何在javascript代码示例中使用reduce展平数组

📅  最后修改于: 2022-03-11 15:03:04.690000             🧑  作者: Mango

代码示例2
//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);