How to use the permutations function from lodash

Find comprehensive JavaScript lodash.permutations code examples handpicked from public code repositorys.

73
74
75
76
77
78
79
80
81
82
83
84
      break;
    }
  }
}


let perms = _.permutations([0, 1, 2, 3], 4).map((L) =>
  _.flatMap(L.map((e) => [2 * e + 1, 2 * e]))
);


// perms = [[3, 5, 2, 4, 1, 0, 7, 6]];
fork icon1
star icon4
watch icon0

40
41
42
43
44
45
46
47
48
49
```

## usage

```javascript
let permutations = _.permutations([true, {a: 1}, null], 2);
// => [[true, {a: 1}], [true, null], [{a: 1}, true], [{a: 1}, null], [null, true], [null, {a: 1}]]
```

---
fork icon0
star icon4
watch icon2

+ 3 other calls in file

Other functions in lodash

Sorted by popularity

function icon

lodash.get is the most popular function in lodash (7670 examples)