![]() |
VOOZH | about |
The sum() method in collect.js is used to return the sum of all the items in the given collection.
Syntax:
collect(array).sum()
Parameters: The collect() method takes one argument that is converted into the collection and then sum() method is applied on it.
Return Value: This method returns the sum of all items in the collection:
The below examples illustrates the sum() method in collect.js:
Example 1:
Output:
60
Example 2:
Output:
273