Collect.js sum() Method Last Updated : 03 Dec, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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: JavaScript // Acquiring collect.js constant const collect = require('collect.js'); let arr = [5, 10, 12, 15, 18] const collection = collect(arr); const find_sum = collection.sum(); console.log(find_sum); Output: 60 Example 2: JavaScript // Acquiring collect.js constant const collect = require('collect.js'); let obj = [ { subject: 'English', score: 85, }, { subject: 'math', score: 90, }, { subject: 'science', score: 98, } ]; const collection = collect(obj); const find_sum = collection.sum('score'); console.log(find_sum); Output: 273 Comment More infoAdvertise with us Next Article Collect.js mode() Method C code_hunt Follow Improve Article Tags : JavaScript Web Technologies Collect.js Similar Reads Collect.js put() Method The put() method is used to set the given key and value in the collection. Syntax: collect(array).put(key) Parameters: The collect() method takes one argument that is converted into the collection and then put() method is applied on it. The put() method holds the key as parameter. Below example illu 1 min read Collect.js skip() Method The skip() method is used to skip the given number of elements from collection and returns the remaining collection elements. Syntax: collect(array).skip(size) Parameters: The collect() method takes one argument that is converted into the collection and then skip() method is applied on it. The skip( 1 min read Collect.js pull() Method The pull() method is used to remove an element from collection by given key and return the pulled element. Syntax: collect(array).pull(key) Parameters: The collect() method takes one argument that is converted into the collection and then pull() method is applied on it. The pull() method holds the k 1 min read Collect.js mode() Method The mode() method of collect.js is used to return the mode of the given key. The mode is the value that occurs most frequently in a set of observations. Syntax: collect(array).mode(key) Parameters: The collect() method takes one argument that is converted into the collection and then mode() method i 1 min read Collect.js union() Method The union() method is used to add the given array to the collection with the unique values. If the given array contains values that are already in the original collection, the original collection's values will be preferred. Syntax: collect.union() Parameters: The collect() method takes one argument 1 min read Collect.js nth() Method The nth() method is used to create a new collection consisting of every n-th element. Syntax: collect(array).nth(num) Parameters: The collect() method takes one argument that is converted into the collection and then nth() method is applied on it. The nth() method holds a number. Return Value: This 1 min read Like