VOOZH about

URL: https://www.geeksforgeeks.org/javascript/collect-js-sum-method/

⇱ Collect.js sum() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Collect.js sum() Method

Last Updated : 3 Dec, 2020

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
Comment
Article Tags: