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


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


prepend()方法用于在给定集合的开头添加项目。

用法:

collect(array).prepend(value)

参数:collect()方法采用一个参数,该参数将转换为集合,然后在其上应用prepend()方法。 prepend()方法保存要添加到集合中的值。

返回值:此方法返回collection元素。

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



范例1:

Javascript

const collect = require('collect.js'); 
  
const collection = collect(['Geeks', 'GFG', 'GeeksforGeeks']); 
  
collection.prepend('Welcome'); 
  
console.log(collection.all());

输出:

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

范例2:

Javascript

const collect = require('collect.js'); 
  
let obj = [ 
    { 
        name:'Rahul', 
        dob:'25-10-96'
    }, 
    { 
        name:'Aditya', 
        dob:'25-10-96'
    }, 
    { 
        name:'Abhishek', 
        dob:'16-08-94'
    } 
]; 
  
const collection = collect(obj); 
  
collection.prepend({ name:'Ashok', dob:'15-12-91' }); 
  
console.log(collection.all());

输出:

[
  { name:'Ashok', dob:'15-12-91' },
  { name:'Rahul', dob:'25-10-96' },
  { name:'Aditya', dob:'25-10-96' },
  { name:'Abhishek', dob:'16-08-94' }
]

相关用法


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