📜  收集.js | count()函数

📅  最后修改于: 2022-05-13 01:56:26.855000             🧑  作者: Mango

收集.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});


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: { 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