Interleave arrays?

Hey guys, I’m trying to solve it and know I’m not quite there yet, but looking for some guidance…

Write function named interleave that will take two arrays and interleaves them

Example:

if you pass it ["a", "b", "c"] and ["d", "e", "f"] then it should return ["a", "d", "b", "e", "c", "f"]
NOTE: you can assume each input will be the same length

My code:

function interleave (arr, arr2) {
    let newArr = [];
    for (let i = 0; i < arr.length; i++) {
        for (let j = 0; j < arr2.length; j++) {
            newArr.push(arr[i], arr2[j]);
        }
    }
    
    
    
    return newArr;
};

here’s a hint. You only need one for loop to solve this…

Yeah, just have this now…it might be it…

function interleave (arr, arr2) {
    let newArr = [];
    for (let i = 0; i < arr.length; i++) {
        newArr.push(arr[i], arr2[i]);
    }
    
    return newArr;
};
2 Likes

Oh god, I’m gonna have to look up exactly what is going on here! :persevere: