JavaScript中数组的反向索引值总和

假设我们有一个这样的数字数组-

const arr = [3, 6, 7, 3, 1, 4, 4, 3, 6, 7];

在示例中,该数组包含10个元素,因此最后一个元素的索引恰好是9。我们需要编写一个函数,该函数接受一个这样的数组并返回元素的反向索引乘和。

像在这个例子中,它会像-

(9*3)+(8*6)+(7*7)+(6*3)+.... until the end of the array.

因此,让我们为该函数编写代码-

示例

const arr = [3, 6, 7, 3, 1, 4, 4, 3, 6, 7];

const reverseMultiSum = arr => {

   return arr.reduce((acc, val, ind) => {

      const sum = val * (arr.length - ind - 1);

      return acc + sum;

   }, 0);

};

console.log(reverseMultiSum(arr));

输出结果

控制台中的输出将为-

187

以上是 JavaScript中数组的反向索引值总和 的全部内容, 来源链接: utcz.com/z/355841.html

回到顶部