Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 494 Bytes

prod.md

File metadata and controls

20 lines (14 loc) · 494 Bytes
标题 标签
prod(求数值数组的乘积) math,array(数学,数组)

计算两个或多个数字/数组的乘积。

  • 使用 Array.prototype.reduce() 将每个值与累加器相乘,累加器初始化为 1。
const prod = (...arr) => [...arr].reduce((acc, val) => acc * val, 1);

调用方式:

prod(1, 2, 3, 4); // 24
prod(...[1, 2, 3, 4]); // 24

应用场景