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


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


pop()方法用于从集合中删除最后一个元素,并返回弹出的元素。

用法:

collect(array).pop()

参数:collect()方法采用一个参数,该参数将转换为集合,然后在其上应用pop()方法。

返回值:此方法返回给定集合中弹出的元素。

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



范例1:

Javascript

const collect = require('collect.js'); 
  
const collection = collect(['Geeks', 'GFG', 'GeeksforGeeks']); 
  
console.log("Popped Elements:" + collection.pop()); 
  
console.log("Collection Elements:" + collection.all());

输出:

Popped Elements:GeeksforGeeks
Collection Elements:Geeks,GFG

范例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); 
  
console.log("Popped Element"); 
console.log(collection.pop()); 
  
console.log("Collection Elements"); 
console.log(collection.all());

输出:

Popped Element
{ name:'Abhishek', dob:'16-08-94' }
Collection Elements
[
  { name:'Rahul', dob:'25-10-96' },
  { name:'Aditya', dob:'25-10-96' }
]

相关用法


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