Function concat

  • Creates a new array concatenating array with any additional arrays and/or values.

    Type Parameters

    • T

    Parameters

    • Rest...arrays: T[] | T[][]

    Returns T[]

    Returns the new concatenated array.

    5.0.0

    var array = [1];
    var other = concat(array, 2, [3], [[4]]);

    console.log(other);
    // => [1, 2, 3, [4]]

    console.log(array);
    // => [1]