@bemoje/arr-last-where

Return the last element of an array where the callback returns true.

Usage no npm install needed!

<script type="module">
  import bemojeArrLastWhere from 'https://cdn.skypack.dev/@bemoje/arr-last-where';
</script>

README

@bemoje/arr-last-where

Return the last element of an array where the callback returns true.

Version

NPM version

Travis CI

dependencies

Dependencies

dependencies

Stats

NPM downloads Forks

Donate

Buy Me A Beer donate button PayPal donate button

Installation

npm install @bemoje/arr-last-where
npm install --save @bemoje/arr-last-where
npm install --save-dev @bemoje/arr-last-where

Usage

import arrLastWhere from '@bemoje/arr-last-where'

const arr = [1, 2, 6, 3, 4, 5]

arrLastWhere(arr, (element) => {
    return element >= 5
})
//=> 5

arrLastWhere(arr, (element) => {
    return element >= 7
})
//=> null

Tests

Uses Jest to test module functionality. Run tests to get coverage details.

npm run test

API

arrLastWhere

Return the last element of an array where the callback returns true.

Parameters
  • arr Array The array to iterate

  • callback callback callback(element, index, array): boolean

Returns

any The last element to satisfy the condition in the callback

callback

Type: Function

Parameters
  • element any The current element

  • index number The current element's index in the array

  • array Array The array