Skip to content
Advertisement

Javascript: How to populate arguments passed to a function?

I have this code that returns cartesian product of three arrays:

JavaScript

For example, like this:

JavaScript

However, I don’t always want my number series to be made out of three numbers. Sometimes, I want four, five, or any other number. That is why I would like to have an argument that would populate the arguments inside cartesian() function call, accordingly.

I would imagine something like this:

JavaScript

How can I do that, please? Every help is appreciated.

Advertisement

Answer

I think something like this should work:

JavaScript
User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement