findLastIndex_.findLastIndex(array, predicate, [context])
Like _.findIndex but iterates the array in reverse, returning the index closest to the end where the predicate truth test passes.
1 2 3 4 5 6 7 8 | var users = [{ 'id' : 1, 'name' : 'Bob' , 'last' : 'Brown' }, { 'id' : 2, 'name' : 'Ted' , 'last' : 'White' }, { 'id' : 3, 'name' : 'Frank' , 'last' : 'James' }, { 'id' : 4, 'name' : 'Ted' , 'last' : 'Jones' }]; _.findLastIndex(users, { name: 'Ted' }); => 3 |
Please login to continue.