Underscore.JS rest方法
语法
_.rest(array, [index])
rest方法返回数组中除第一个元素外的所有元素。如果传递了索引,则返回从索引开始的元素。
示例
var _ = require('underscore');
var list = [1, 2, 3, 4, 5, 6]
//Example: get all elements excluding first one
result = _.rest(list);
console.log(result)
//Example: get elements from 3rd index
result = _.last(list, 3);
console.log(result)
将上面的程序保存在 tester.js 文件中。运行以下命令以执行该程序。
命令
>node tester.js
输出
[ 2, 3, 4, 5, 6 ]
[ 4, 5, 6 ]