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


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


collect.js中的dd()方法用於記錄函數的輸出並停止進一步執行,從而退出當前進程。

安裝:

  • 使用NPM:
    npm install collect.js
  • 使用collect.js的CDN
    <script src="https://cdnjs.com/libraries/collect.js"></script>

用法:

collect.dd()

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

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



範例1:

Javascript

// Importing the collect.js module. 
const collect = require('collect.js');  
let array = [1, 2, 3, 4, 5, 6]; 
  
// Making the collection 
let collection = collect(array); 
  
// Using dd() function 
collection.dd();

輸出:

範例2:dd()函數之後的代碼將不會執行。

Javascript

// Importing the collect.js module. 
const collect = require('collect.js');  
let array = ["a", "b", "c"]; 
  
// Making the collection 
let collection = collect(array); 
console.log("Output is:"); 
  
// Using dd() function 
collection.dd(); 
  
// This will not be printed on the console 
console.log("geeks for geeks");

輸出:

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

相關用法


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