我们需要编写一个函数,说它sumBetween()
接受两个元素组成的数组[a,b],并返回a和b之间的所有元素之和,包括a和b。
例如-
[4, 7] = 4+5+6+7 = 22 [10, 6] = 10+9+8+7+6 = 40
让我们为该函数编写代码-
const arr = [10, 60]; const sumUpto = (n) => (n*(n+1))/2; const sumBetween = (array) => { if(array.length !== 2){ return -1; } const [a, b] = array; return sumUpto(Math.max(a, b)) - sumUpto(Math.min(a, b)) + Math.min(a,b); }; console.log(sumBetween(arr)); console.log(sumBetween([4, 9]));
输出结果
控制台中的输出将为-
1785 39