Collect.js duplicates() 方法
collect.js 中的duplicates()函数用于从给定数组中提取重复项。它返回一个对象,其中包含作为副本索引的键和作为副本本身的值。
安装:
- 使用 NPM:
npm install collect.js
- 使用 collect.js 的 CDN
句法:
collect.duplicates()
参数:此方法不接受任何参数。
返回值:它返回包含重复值及其索引的对象。
示例 1:
Javascript
// Importing the collect.js module.
const collect = require('collect.js');
const collection = collect(['b', 'c', 'a', 'a', 'b', "c"]);
const duplicatesObject = collection.duplicates();
// Logging the return type
console.log("Type is: ", typeof(duplicatesObject))
// Logging the duplicates object
console.log(duplicatesObject)
Javascript
// Importing the collect.js module.
const collect = require('collect.js');
const collection = collect(["geeks",
"geeks", "for", "geeks", "for"]);
const duplicatesObject = collection.duplicates();
// Logging the return type
// logging the duplicates object using
// duplicate.all
console.log("Output: ")
console.log(duplicatesObject.all())
输出:
示例 2:使用 duplicate.all 记录并从字符串数组中提取重复项。
Javascript
// Importing the collect.js module.
const collect = require('collect.js');
const collection = collect(["geeks",
"geeks", "for", "geeks", "for"]);
const duplicatesObject = collection.duplicates();
// Logging the return type
// logging the duplicates object using
// duplicate.all
console.log("Output: ")
console.log(duplicatesObject.all())
输出: