Lodash _.partition

2021-09-24 10:08 更新

_.partition(collection, [predicate=_.identity])

創(chuàng)建一個(gè)分成兩組的元素?cái)?shù)組,第一組包含predicate(斷言函數(shù))返回為 truthy(真值)的元素,第二組包含predicate(斷言函數(shù))返回為 falsey(假值)的元素。predicate 調(diào)用1個(gè)參數(shù):(value)。

添加版本

3.0.0

參數(shù)

  1. collection (Array|Object): 用來迭代的集合。
  2. [predicate=_.identity] (Array|Function|Object|string): 每次迭代調(diào)用的函數(shù)。

返回

(Array): 返回元素分組后的數(shù)組。

例子

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

 


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

掃描二維碼

下載編程獅App

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

編程獅公眾號(hào)