当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。