Open In App

Collect.js implode() Method

Last Updated : 27 Nov, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The implode() method is used to join the given items into the collection.

Syntax:

collect(array).implode(join_key)

Parameters: The collect() method takes one argument that is converted into the collection and then implode() method is applied on it. The implode() method holds the value of join key.

Return Value: This method returns the collection items using given join key.

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

Example 1:




const collect = require('collect.js');
  
let arr = [10, 20, 30, 40, 50];
  
const collection = collect(arr);
  
const implode_val = collection.implode(', ');
  
console.log(implode_val);


Output:

10, 20, 30, 40, 50

Example 2:




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: 80
    },
    {
        name: 'Rahul',
        dob: '19-08-96',
        section: 'B',
        score: 77,
    },
];
  
const collection = collect(obj);
  
const implode_val = collection.implode('name', ', ');
  
console.log(implode_val);


Output:

Rahul, Aditya, Abhishek, Rahul


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads