Lodash _.dropRightWhile

2021-09-22 09:31 更新

_.dropRightWhile(array, [predicate=_.identity])

創(chuàng)建一個(gè)切片數(shù)組,去除array中從 predicate 返回假值開始到尾部的部分。predicate 會(huì)傳入3個(gè)參數(shù): (value, index, array)。

引入版本

3.0.0

參數(shù)

  1. array (Array): 要查詢的數(shù)組。
  2. [predicate=_.identity] (Function): 這個(gè)函數(shù)會(huì)在每一次迭代調(diào)用。

返回值

(Array): 返回array剩余切片。

例子

var users = [  { 'user': 'barney',  'active': true },  { 'user': 'fred',    'active': false },  { 'user': 'pebbles', 'active': false }];
 _.dropRightWhile(users, function(o) { return !o.active; });
// => objects for ['barney'] // The `_.matches` iteratee shorthand.
_.dropRightWhile(users, { 'user': 'pebbles', 'active': false });
// => objects for ['barney', 'fred'] // The `_.matchesProperty` iteratee shorthand.
_.dropRightWhile(users, ['active', false]);
// => objects for ['barney'] // The `_.property` iteratee shorthand.
_.dropRightWhile(users, 'active');
// => objects for ['barney', 'fred', 'pebbles']


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)