lodash.product
TypeScript icon, indicating that this package has built-in type declarations

18.10.0 • Public • Published

lodash.product

_.product(...collections)

Calculates the Cartesian product between multiple collections.

argument description
collections Collections to calculate the Cartesian product from.

Returns a new array.

setup

npm

npm i lodash.product

ES module

import 'lodash.product';
import _ from 'lodash';

Node

require('lodash.product');
let _ = require('lodash');

browser

<script src="https://unpkg.com/lodash"></script>
<script src="https://unpkg.com/lodash.product"></script>

usage

let product = _.product([false, true], ['a', 'b', 'c'], [{}]);
// => [[false, 'a', {}], [false, 'b', {}], [false, 'c', {}], [true, 'a', {}], [true, 'b', {}], [true, 'c', {}]]

let array = [1, 2, 3];
let product = _.product(array, array);
// => [[1, 1], [1, 2], [1, 3], [2, 1], [2, 2], [2, 3], [3, 1], [3, 2], [3, 3]]

Dependents (11)

Package Sidebar

Install

npm i lodash.product

Weekly Downloads

7,694

Version

18.10.0

License

MIT

Unpacked Size

3.65 kB

Total Files

5

Last publish

Collaborators

  • seregpie