Thursday, October 23, 2025
HomeLanguagesJavascriptCollect.js mode() Method

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 is applied to it. The mode() method holds the key as a parameter.

Return Value: This method returns the mode of the given key from the collection.

Below example illustrate the mode() method in collect.js:

Example 1:

Javascript




const collect = require('collect.js');
  
let arr = [1, 1, 3, 3, 3, 5, 5, 6];
  
const collection = collect(arr);
  
const mode_val = collection.mode();
  
console.log(mode_val);


Output:

3

Example 2:

Javascript




const collect = require('collect.js');
  
let obj = [
    {
        name: 'Rahul',
        dob: '25-10-96',
        section: 'A',
        score: 98,
    },
    {
        name: 'Aditya',
        dob: '25-10-96',
        section: 'B',
        score: 96,
    },
    {
        name: 'Abhishek',
        dob: '16-08-94',
        section: 'A',
        score: 98
    }
];
  
const collection = collect(obj);
  
const mode_val = collection.mode('score');
  
console.log(mode_val);


Output:

98
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS