收集.js |推()函数
push()函数用于将新值添加到集合的末尾。在 JavaScript 中,首先将数组转换为集合,然后将函数应用于集合。句法:
data.push(value)
参数:此函数接受如上所述和如下所述的单个参数:
- value:此参数保存要添加的值。
返回值:返回由此函数创建的修改后的集合。
下面的例子说明了 collect.js 中的push()函数
示例 1:
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect(["Geeks", "for", "Geeks"]);
collection.push("CS");
console.log(collection.all());
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([10 , 20 , 30]);
collection.push(40);
console.log(collection.all());
输出:
[ 'Geeks', 'for', 'Geeks', 'CS' ]
示例 2:
Javascript
// It is used to import collect.js library
const collect = require('collect.js');
const collection = collect([10 , 20 , 30]);
collection.push(40);
console.log(collection.all());
输出:
[ 10, 20, 30, 40 ]
参考: https ://collect.js.org/api/push.html