• Same as push but uses concat

    Example

    const myArray = [1, 2, 3]
    append(myArray, 0); // myArray => [1, 2, 3, 0]

    Type Parameters

    • T

    Parameters

    • array: T[]
    • value: T

    Returns number

Generated using TypeDoc