Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 192 Bytes

getCombination.md

File metadata and controls

8 lines (7 loc) · 192 Bytes

getCombination(arr)

Get an array of unique combinations of the elements in arr.

  • arr <Array>
var arr = ['a', 'b', 'c'];
var combinations = sqlh.getCombination(arr);