• ES Version of lodash.drop Creates a slice of array with n elements dropped from the beginning.

    Type Parameters

    • T

    Parameters

    • arr: T[]

      The array to query.

    • n: number = 1

      The number of elements to drop.

    Returns T[]

    Returns the slice of array.