最佳答案
当我减少数组时,我试图得到数字零,但是我不能清楚地理解函数的行为
[].reduce(function(previousValue, currentValue){
return Number(previousValue) + Number(currentValue);
});
结果
TypeError: Reduce of empty array with no initial value
似乎如果数组是空的,我就不能减少它
[""].reduce(function(previousValue, currentValue){
return Number(previousValue) + Number(currentValue);
});
结果
""
如果数组中的唯一元素是空字符串,则检索空字符串