Underscore.JS chunk方法

Underscore.JS chunk方法

语法

_.chunk(array, length)

chunk方法使用length参数从一个数组中提取多个数组。生成的数组的最大长度为给定的length。

示例

var _ = require('underscore');

var list1 = [ 'Sam', 'Joe','Julie' ]
var list2 = [ 1, 2, 3, 4, 5, 6 ]

//Example 1: create arrays using list1
result = _.chunk(_.shuffle(list1), 2);
console.log(result)

//Example 2: create arrays using list2
result = _.chunk(list2, 2);
console.log(result)

将上述程序保存在 tester.js 。运行以下命令来执行该程序。

命令

>node tester.js

输出

[ [ 'Julie', 'Joe' ], [ 'Sam' ] ]
[ [ 1, 2 ], [ 3, 4 ], [ 5, 6 ] ]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程