I have the following unknown number of arrays
var sizes = ["8", "9", "10"];
var colors = ["Black", "Blue"];
var laces = ["Yes", "No"];
....
....
upto n array
I have a case where i have to find all the possible combinations of all strings in these arrays
for example :
var combinations = [["8", "Black", "Yes", ...], ["9", "Black", "Yes", ...], ...];