当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Collect.js partition()用法及代码示例


partition()方法用于根据给定的回调函数分隔收集元素。第一个数组包含满足谓词(条件)的那些元素,第二个数组包含其余元素。

用法:

collect(array).partition(callback)

参数:collect()方法采用一个参数,该参数将转换为集合,然后将partition()方法应用于该参数。 partition()方法将回调函数作为参数保存。

返回值:此方法返回带有分区的集合元素。

模块安装:使用以下命令从项目的根目录安装collect.js模块:



npm install collect.js

以下示例说明了collect.js中的partition()方法:

示例1:Filename:index.js

Javascript

// Requiring the module 
const collect = require('collect.js'); 
  
// Creating collection object 
const collection = collect([1, 2, 3,  
    5, 6, 8, 9, 11, 17, 22]); 
  
// Calling partition function on collection 
const [odd, even] = collection.partition( 
    element => element % 2 != 0); 
  
// Printing the odd & even values 
console.log(odd.all()); 
console.log(even.all());

使用以下命令运行index.js文件:

node index.js

输出:

[ 2, 6, 8, 22 ]
[ 1, 3, 5, 9, 11, 17 ]

示例2:Filename:index.js

Javascript

// Requiring the module 
const collect = require('collect.js'); 
  
// Creating collection object 
const collection = collect(['Welcome',  
    'Geeks', 'GFG', 'GeeksforGeeks']); 
  
// Calling partition function on  
// collection object 
const [short, long] = collection.partition( 
    element => element.length < 6); 
  
// Printing short values 
console.log(short.all()); 
  
// Printing long values 
console.log(long.all());

使用以下命令运行index.js文件:

node index.js

输出:

[ 'Geeks', 'GFG' ]
[ 'Welcome', 'GeeksforGeeks' ]

相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js partition() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。