Lodash - sortedUniq 方法



语法

_.sortedUniq(array)

此方法类似于 _.uniq,但针对已排序数组设计并针对已排序的数组进行了优化。

参数

  • array (数组) − 要检查的数组。

输出

  • (数组) − 返回新的无重复数组。

示例

var _ = require('lodash');
var list = [1, 2, 2, 2];

var result = _.sortedUniq(list);
console.log(result);

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

命令

\>node tester.js

输出

[ 1, 2 ]
lodash_array.htm
广告