Skip to content

Instantly share code, notes, and snippets.

@mcwitt
Created May 19, 2016 22:18
Show Gist options
  • Save mcwitt/669660d82d6637bcb748a2f80dd86199 to your computer and use it in GitHub Desktop.
Save mcwitt/669660d82d6637bcb748a2f80dd86199 to your computer and use it in GitHub Desktop.
const product = lists =>
lists.reduce(
(result, list) => list.reduce(
(tuples, e) => tuples.concat(result.map(t => t.concat(e))), []),
[[]]
)
console.log(product([[1,2,3], ['a','b','c'], ['foo','bar','baz']]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment