Responsive Advertisement

How can I create every combination possible for the contents of two arrays?

How can I create every combination possible for the contents of two arrays?



<?php

    A loop of this form

    combos = [] //or combos = new Array(2);

    for(var i = 0i < array1.lengthi++)
    {
        for(var j = 0j < array2.lengthj++)
        {
            //you would access the element of the array as array1[i] and array2[j]
            //create and array with as many elements as the number of arrays you are to combine
            //add them in
            //you could have as many dimensions as you need
            combos.push(array1[i+ array2[j])
        }
    }

Post a Comment

0 Comments