Thursday, December 11, 2025
HomeLanguagesJavascriptCollect.js flatten() Method

Collect.js flatten() Method

Collect.js is a wrapper library for working with arrays and objects which is dependency-free and easy to use. The flatten() method is used to flatten a multi-dimensional collection into a single dimensional collection and returns the flatten single dimensional collection elements.

Syntax:

collect(array).flatten()

Parameters: The collect() method takes one argument that is converted into the collection and then flatten() method is applied on it.

Return Value: This method returns the flatten single dimensional collection elements.

Example 1: Below example illustrates the flatten() method in collect.js

HTML




const collect = require('collect.js');
  
let obj = [
    {
        name: 'Rahul',
        score: 98,
    },
    {
        name: 'Aditya',
        score: 96,
    },
    {
        name: 'Abhishek',
        score: 80
    }
];
   
const collection = collect(obj); 
const flatten_Val = collection.flatten(1); 
console.log(flatten_Val.all());


Output:

[ 'Rahul', 98, 'Aditya', 96, 'Abhishek', 80 ]

Example 2:

html




const collect = require('collect.js');
   
let arr = [
    ['Geeks', 'GFG', 'neveropen'],
    [10, 20, 30, 40, 50]
];
   
const collection = collect(arr);
   
const flatten_Val = collection.flatten(1);
   
console.log(flatten_Val.all());


Output:

[ 'Geeks', 'GFG', 'neveropen', 10, 20, 30, 40, 50 ]
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
32444 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6813 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12026 POSTS0 COMMENTS
Shaida Kate Naidoo
6944 POSTS0 COMMENTS
Ted Musemwa
7197 POSTS0 COMMENTS
Thapelo Manthata
6890 POSTS0 COMMENTS
Umr Jansen
6881 POSTS0 COMMENTS