Function dropWhile

  • Creates a slice of array excluding elements dropped from the beginning. Elements are dropped until predicate returns falsey. The predicate is invoked with three arguments: (value, index, array).

    Type Parameters

    • T

    Parameters

    • array: T[]

      The array to query.

    • predicate: any

      The function invoked per iteration.

    Returns T[]

    Returns the slice of array.

    Since

    5.0.0

    Example

    const users = [
    { 'user': 'barney', 'active': true },
    { 'user': 'fred', 'active': true },
    { 'user': 'pebbles', 'active': false }
    ]

    dropWhile(users, ({ active }) => active)
    // => objects for ['pebbles']