The Wayback Machine - https://web.archive.org/web/20170626181540/https://github.com/lodash/lodash/blob/master/multiply.js
Skip to content
Permalink
6cb3460 Feb 6, 2017
19 lines (16 sloc) 488 Bytes
import createMathOperation from './.internal/createMathOperation.js'
/**
* Multiply two numbers.
*
* @since 4.7.0
* @category Math
* @param {number} multiplier The first number in a multiplication.
* @param {number} multiplicand The second number in a multiplication.
* @returns {number} Returns the product.
* @example
*
* multiply(6, 4)
* // => 24
*/
const multiply = createMathOperation((multiplier, multiplicand) => multiplier * multiplicand, 1)
export default multiply
You can't perform that action at this time.
You signed in with another tab or window. Reload to refresh your session. You signed out in another tab or window. Reload to refresh your session.
Morty Proxy This is a proxified and sanitized view of the page, visit original site.