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
相關用法
- PHP count()用法及代碼示例
- PHP Ds\Deque count()用法及代碼示例
- PHP Ds\Vector count()用法及代碼示例
- PHP SimpleXMLElement count()用法及代碼示例
- PHP Ds\Map count()用法及代碼示例
- PHP SplDoublyLinkedList count()用法及代碼示例
- PHP SplObjectStorage count()用法及代碼示例
- PHP SplFixedArray count()用法及代碼示例
- PHP SplHeap count()用法及代碼示例
- PHP Ds\Stack count()用法及代碼示例
- PHP ArrayObject count()用法及代碼示例
- PHP ArrayIterator count()用法及代碼示例
- PHP DOMNamedNodeMap count()用法及代碼示例
- PHP DOMNodeList count()用法及代碼示例
- d3.js node.count()用法及代碼示例
- HTML DOM console.count()用法及代碼示例
注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Collect.js | count() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。