Lodash _.takeRightWhile

2021-09-22 09:43 更新

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

從array數(shù)組的最后一個(gè)元素開(kāi)始提取元素,直到 predicate 返回假值。predicate 會(huì)傳入三個(gè)參數(shù): (value, index, array)。

添加版本

3.0.0

參數(shù)

  1. array (Array): 要檢索的數(shù)組。
  2. [predicate=_.identity] (Array|Function|Object|string): 每次迭代調(diào)用的函數(shù)。

返回

(Array): 返回 array 數(shù)組的切片。

例子

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


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)