chunk()函数将集合分解为给定大小的许多小集合。在JavaScript中,首先将数组转换为集合,然后将函数应用于集合。
用法:
data.chunk(x)
参数:该函数接受如上所述和以下描述的单个参数。
- x:此参数包含一个整数,该整数定义在何处中断集合
返回值:返回主集合的子集合
以下示例说明了collect.js中的chunk()函数:示例1:在此示例中,我们获取一个集合,然后使用chunk()函数对集合进行划分。
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([1, 2, 3, 4, 5, 6, 7]);
const x = collection.chunk(5);
console.log(x.all());
输出:
[ Collection { items:[ 1, 2, 3, 4, 5 ] }, Collection { items:[ 6, 7 ] } ]
范例2:在此示例中,我们将在chunk()函数中传递两个值。
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([0 , 1 , 2 , 3 , 4 , 5 , 6 ]);
const x = collection.chunk(2, 4);
console.log(x.all());
输出:
[ Collection { items:[ 0, 1 ] }, Collection { items:[ 2, 3 ] }, Collection { items:[ 4, 5 ] }, Collection { items:[ 6 ] } ]
相关用法
- Lodash _.chunk()用法及代码示例
- Underscore.js _.chunk()用法及代码示例
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP array_udiff_uassoc()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- PHP opendir()用法及代码示例
- PHP cal_to_jd()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
- PHP stream_get_transports()用法及代码示例
- PHP Ds\Deque pop()用法及代码示例
- PHP SimpleXMLElement children()用法及代码示例
- p5.js removeElements()用法及代码示例
注:本文由纯净天空筛选整理自akhilsharma870大神的英文原创作品 Collect.js | chunk() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。