mult(n1, n2, ...)
Return the product of the numbers n1, n2, .... The multiplication operator (*) is internally mapped to this function.
n1
n2
...
*
mult(12, 100, 34) // 40800 12 * 100 * 34 // 40800 `*`(12, 100, 34) // 40800
Core Module Index | Contents