mult


mult(n1, n2, ...)
      

Return the product of the numbers n1, n2, .... The multiplication operator (*) is internally mapped to this function.

Examples:


mult(12, 100, 34)
// 40800
12 * 100 * 34
// 40800
`*`(12, 100, 34)
// 40800
      

Also see:

add
sub
div
mod


Core Module Index | Contents