- Underscore.JS 教程
- Underscore.JS — 主页
- Underscore.JS — 概览
- Underscore.JS — 环境设置
- Underscore.JS — 迭代集合
- Underscore.JS — 处理集合
- Underscore.JS — 迭代数组
- Underscore.JS — 处理数组
- Underscore.JS — 函数
- Underscore.JS — 映射对象
- Underscore.JS — 更新对象
- Underscore.JS — 比较对象
- Underscore.JS — 实用程序
- Underscore.JS — 链接
- Underscore.JS 有用资源
- Underscore.JS — 快速指南
- Underscore.JS — 有用资源
- Underscore.JS — 讨论
Underscore.JS — uniq 方法
语法
_.uniq(array, [isSorted], [iteratee])
uniq 方法从数组中返回一个唯一值的数组。它使用类型安全相等性 (===) 检查。如果数组已排序,请传递 true 来运行更快的算法。可传递一个迭代器函数来确定项目的唯一性。
示例
var _ = require('underscore'); var list1 = [11, 2, 14, 14, 2, 6] var list2 = [1, 2, 3, 3, 3, 4, 5] //Example 1: uniq values result = _.uniq(list1); console.log(result) //Example 2: uniq values of an sorted array result = _.uniq(list2, true); console.log(result)
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
[ 11, 2, 14, 6 ] [ 1, 2, 3, 4, 5 ]
underscorejs_processing_array.htm
广告