method Console.count
Jump to headingConsole.count(label?: string): void
Maintains an internal counter specific to label
and outputs to stdout
the
number of times console.count()
has been called with the given label
.
> 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
>
Parameters Jump to heading
optional
Jump to headinglabel: string = 'default'
The display label for the counter.
Return Type Jump to heading
void