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' ] }
相關用法
- 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()用法及代碼示例
- Node.js crypto.createHash()用法及代碼示例
- Node.js writeStream.clearLine()用法及代碼示例
- Node.js fs.link()用法及代碼示例
- JavaScript Math random()用法及代碼示例
- JavaScript Math round()用法及代碼示例
- Javascript toString()用法及代碼示例
- Javascript Number.isInteger( )用法及代碼示例
- Javascript Number.isFinite()用法及代碼示例
- Javascript toFixed()用法及代碼示例
- Javascript toPrecision()用法及代碼示例
- JavaScript Math abs()用法及代碼示例
- JavaScript Math sqrt()用法及代碼示例
注:本文由純淨天空篩選整理自tarun007大神的英文原創作品 Collect.js dump() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。