COLLECTED BY
Organization:
Internet Archive
Focused crawls are collections of frequently-updated webcrawl data from narrow (as opposed to broad or wide) web crawls, often focused on a single domain or subdomain.
The Wayback Machine - https://web.archive.org/web/20201220221803/https://github.com/lodash/lodash/blob/master/multiply.js
Permalink
Cannot retrieve contributors at this time
18 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.