当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Collect.js merge()用法及代码示例


merge()方法用于将给定的对象合并到原始集合中。如果给定对象的键与集合对象相同,则它将覆盖键的值。

用法:

collect(array).merge(object)

参数:collect()方法采用一个参数,该参数将转换为集合,然后将merge()方法应用于该参数。 merge()方法将对象保留为参数。

返回值:此方法返回合并元素的集合。

模块安装:使用以下命令从项目的根目录安装collect.js模块:



npm install collect.js

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

示例1:Filename:index.js

Javascript

// Requiring the module 
const collect = require('collect.js'); 
  
let obj = ['Geeks', 'GeeksforGeeks']; 
  
// Function call 
const collection = collect(obj); 
  
const merged_val = collection.merge(['Welcome', 'GFG']); 
  
// Printing the merged collection 
console.log(merged_val.all());

使用以下命令运行index.js文件:

node index.js

输出:

[ 'Geeks', 'GeeksforGeeks', 'Welcome', 'GFG' ]

示例2:Filename:index.js

Javascript

// Requiring the module 
const collect = require('collect.js'); 
  
let obj = [ 
    { 
        name:'Rahul', 
        dob:'25-10-96', 
    }, 
    { 
        name:'Aditya', 
        dob:'25-10-96', 
    } 
]; 
  
// Function call 
const collection = collect(obj); 
  
const merged_val = collection.merge({ 
    address:'Noida', 
    school:'GeeksforGeeks', 
}); 
  
// Printing the merged collection 
console.log(merged_val.all());

使用以下命令运行index.js文件:

node index.js

输出:

[
  { name:'Rahul', dob:'25-10-96' },
  { name:'Aditya', dob:'25-10-96' },
  address:'Noida',
  school:'GeeksforGeeks'
]

相关用法


注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js merge() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。