Underscore.JS first方法

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 ]

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程