Function default

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

    Parameters

    • array: any

      The array to query.

    • predicate: any

      The function invoked per iteration.

    Returns any[]

    Returns the slice of array.

    Since

    3.0.0

    Example

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

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