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


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


collect.js中的dump()方法用於在特定時刻打印數據,然後繼續執行代碼。

用法:

collect.dump()

參數:它不接受任何參數。

返回值:它不返回任何值。

範例1:



Javascript

// Importing the collect.js module 
const collect = require('collect.js');  
let array = ["a", "b", "c"]; 
  
// Making the collection 
let collection= collect(array); 
  
// Using dump() method to print 
// the data at this moment 
collection.dump()

輸出:

Collection { items:[ 'a', 'b', 'c' ] }

範例2:

Javascript

// Importing the collect.js module. 
const collect = require('collect.js'); 
  
let array = ["a", "b", "c", "d", "e"]; 
  
// Making the collection 
let collection = collect(array); 
  
// Using dump() method to print 
// the data at this moment 
collection.dump() 
    .filter((v, k) => v >= "c") 
    .dump()

輸出:

Collection { items:[ 'a', 'b', 'c', 'd', 'e' ] }
Collection  { items:[ 'c', 'd', 'e' ] }

參考: https://collect.js.org/api/dump.html

相關用法


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