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());
输出:
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 } ]
相关用法
- JavaScript Array shift()用法及代码示例
- Typescript Array shift()用法及代码示例
- PHP Ds\Sequence shift()用法及代码示例
- PHP Ds\Vector shift()用法及代码示例
- PHP Ds\Deque shift()用法及代码示例
- PHP SplDoublyLinkedList shift()用法及代码示例
- Node.js shift()用法及代码示例
- Lodash _.method()用法及代码示例
- Node.js Http2ServerRequest.method用法及代码示例
- Node.js http.IncomingMessage.method用法及代码示例
- Javascript dataView.getInt16()用法及代码示例
- Javascript RegExp toString()用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- JavaScript Math cosh()用法及代码示例
- HTML DOM isEqualNode()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js shift() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。