Returns all possible combinations of the provided items
the items to use
combinations([1,2])> [[], [1], [2], [1,2]] Copy
combinations([1,2])> [[], [1], [2], [1,2]]
Returns all possible combinations of the provided items