Calculate the product of 2 numbers. Meant to be used with Array.prototype.reduce.
number
Array.prototype.reduce
Time complexity: O(1)
Space complexity: O(1)
First factor
Second factor
The product of a and b
a
b
Reducers
const array = [1, 2, 3];array.reduce(product); // 6 Copy
const array = [1, 2, 3];array.reduce(product); // 6
Calculate the product of 2 bigints. Meant to be used with Array.prototype.reduce.
bigint
const array = [1n, 2n, 3n];array.reduce(product); // 6n Copy
const array = [1n, 2n, 3n];array.reduce(product); // 6n
Calculate the product of 2
number
s. Meant to be used withArray.prototype.reduce
.Time complexity: O(1)
Space complexity: O(1)