📜  Collect.js implode() 方法

📅  最后修改于: 2022-05-13 01:56:42.262000             🧑  作者: Mango

Collect.js implode() 方法

implode() 方法用于将给定的项目加入到集合中。

句法:

collect(array).implode(join_key)

参数: collect() 方法接受一个参数,该参数转换为集合,然后对其应用 implode() 方法。 implode() 方法保存连接键的值。

返回值:此方法使用给定的连接键返回集合项。

下面的示例说明了 collect.js 中的 implode() 方法:

示例 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);

输出:

10, 20, 30, 40, 50

示例 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);

输出:

Rahul, Aditya, Abhishek, Rahul