我们需要编写一个JavaScript函数,该函数接受一个带有正数和负数的数组,并返回该数组所有元素的绝对和。
我们必须在不使用任何内置库功能的情况下执行此操作。
例如:如果数组是-
const arr = [1, -5, -34, -5, 2, 5, 6];
那么输出应该是-
58
以下是代码-
const arr = [1, -5, -34, -5, 2, 5, 6]; const absoluteSum = arr => { let res = 0; for(let i = 0; i < arr.length; i++){ if(arr[i] < 0){ res += (arr[i] * -1); continue; }; res += arr[i]; }; return res; }; console.log(absoluteSum(arr));
输出结果
以下是控制台中的输出-
58