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


Node.js Console.count([label])用法及代碼示例


console.count([label])

添加於:v8.3.0

參數
  • label <string> 計數器的顯示標簽。 默認: 'default'

維護一個特定於 label 的內部計數器,並將 console.count() 使用給定的 label 調用的次數輸出到 stdout

> console.count()
default: 1
undefined
> console.count('default')
default: 2
undefined
> console.count('abc')
abc: 1
undefined
> console.count('xyz')
xyz: 1
undefined
> console.count('abc')
abc: 2
undefined
> console.count()
default: 3
undefined
>

相關用法


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