返回 JavaScript 中数组正数计数/(负数求和) 的值
问题
我们需要编写一个 JavaScript 函数,该函数采用一个包含整数(正数和负数)的数组,我们的函数应返回一个数组,其中第一个元素为正数计数,第二个元素为负数求和。
例
以下为该代码 −
const arr = [1, 2, 1, -2, -4, 2, -6, 2, -4, 9]; const posNeg = (arr = []) => { const creds = arr.reduce((acc, val) => { let [count, sum] = acc; if(val > 0){ count++; }else if(val < 0){ sum += val; }; return [count, sum]; }, [0, 0]); return creds; }; console.log(posNeg(arr));
输出
[ 6, -16 ]
广告