Skip to content

multiply(n1, n2, ...)

The add function multiplies two or more numbers.

js
import { multiply } from '@abw/badger-maths'

multiply(3.0, 2.2)        // 6.6
multiply(-3.14, 3)        // -9.42
multiply(3.0, 2.2, 2.0)   // 13.2