當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Collect.js push()用法及代碼示例


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());

輸出:

[ '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

相關用法


注:本文由純淨天空篩選整理自akhilsharma870大神的英文原創作品 Collect.js | push() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。