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


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


count()函數用於計算元素中的集合數。在JavaScript中,首先將數組轉換為集合,然後將函數應用於集合。

用法:

data.count()

參數:該函數不接受任何參數
返回值:返回該集合中元素的計數。

以下示例說明了collect.js中的count()函數示例1:

Javascript



// It is used to import collect.js library 
const collect = require('collect.js'); 
  
const num = [0 , 1 , 2 , 3 , 4, 5 , 6, 7, 8, 9];  
const data = collect(num); 
const total = data.count(); 
  
console.log('Total number of elements are:', {total});

輸出:

Total number of elements are:{ total:10 }

範例2:

Javascript

// It is used to import collect.js library 
const collect = require('collect.js'); 
  
const collection = collect([1, 2, 3, 4]); 
const x = collection.count(); 
  
console.log(`Total number of elements are:${x}`);

輸出:

Total number of elements are:4

參考:https://collect.js.org/api/count.html

相關用法


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