當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Collect.js duplicates()用法及代碼示例


collect.js中的duplicates()函數用於從給定數組中提取重複項。它返回一個對象,該對象包含key作為重複項的索引,並包含value作為重複項本身的值。

安裝:

  • 使用NPM:
    npm install collect.js
  • 使用collect.js的CDN
    <script src="https://cdnjs.com/libraries/collect.js"></script>
    

用法:

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)

輸出:

範例2:使用plicate.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())

輸出:

相關用法


注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Collect.js duplicates() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。