Underscore.JS first方法
语法
_.first(array, [n])
第一个方法返回给定数组的第一个元素。如果传递了n,则返回n个元素。
示例
var _ = require('underscore');
var list = [1, 2, 3, 4, 5, 6]
//Example: get first element of a list
result = _.first(list);
console.log(result)
//Example: get first 3 elements of a list
result = _.first(list, 3);
console.log(result)
将上述程序保存在 tester.js 中。运行以下命令以执行此程序。
命令
>node tester.js
输出
1
[ 1, 2, 3 ]