Multiply all the inputs. If none are present, returns 1.
An array of numeric inputs
The product
const y = SMath.prod([2, 2, 3, 5]); // 60 Copy
const y = SMath.prod([2, 2, 3, 5]); // 60
Multiply all the inputs. If none are present, returns 1.