Function concat

  • 数组合并,返回新的数组

    Parameters

    • Rest ...data: any[]

    Returns any[]

    Version

    1.0.0

    Example

    concat([1, 2], 1, 2, 3) // [1, 2, 1, 2, 3]
    

Generated using TypeDoc