Collect.js shift() 方法
shift() 方法用于从集合中移除第一个元素并返回它。
句法:
collect(array).shift()
参数: collect() 方法采用一个参数,该参数转换为集合,然后对其应用 shift() 方法。
返回值:此方法返回给定集合的第一个元素。
下面的示例说明了 collect.js 中的 shift() 方法:
示例 1:
Javascript
const collect = require('collect.js');
const collection = collect(['Geeks',
'GFG', 'GeeksforGeeks', 'Welcome']);
const shifted = collection.shift();
console.log(shifted);
console.log(collection.all());
Javascript
const collect = require('collect.js');
let obj = [
{
name: 'Rahul',
marks: 88
},
{
name: 'Aditya',
marks: 78
},
{
name: 'Abhishek',
marks: 87
}
];
const collection = collect(obj);
const shifted = collection.shift();
console.log(shifted);
console.log(collection.all());
输出:
Geeks
[ 'GFG', 'GeeksforGeeks', 'Welcome' ]
示例 2:
Javascript
const collect = require('collect.js');
let obj = [
{
name: 'Rahul',
marks: 88
},
{
name: 'Aditya',
marks: 78
},
{
name: 'Abhishek',
marks: 87
}
];
const collection = collect(obj);
const shifted = collection.shift();
console.log(shifted);
console.log(collection.all());
输出:
{ name: 'Rahul', marks: 88 }
[
{ name: 'Aditya', marks: 78 },
{ name: 'Abhishek', marks: 87 }
]