W3cubDocs

/DOM

console.count

Logs the number of times that this particular call to count() has been called. This function takes an optional argument label.

Note: This feature is available in Web Workers.

If label is supplied, this function logs the number of times count() has been called with that particular label.

If label is omitted, the function logs the number of times count() has been called at this particular line.

For example, given code like this:

var user = "";

function greet() {
  console.count();
  return "hi " + user;
}

user = "bob";
greet();
user = "alice";
greet();
greet();
console.count();

Console output will look something like this:

"default: 1"
"default: 2"
"default: 3"
"default: 1"

Note the final line of log output: the separate call to count() at line 11 is treated as an independent event.

If we pass the user variable as the label argument to the first invocation of count(), and the string "alice" to the second:

var user = "";

function greet() {
  console.count(user);
  return "hi " + user;
}

user = "bob";
greet();
user = "alice";
greet();
greet();
console.count("alice");

We will see output like this:

"bob: 1"
"alice: 1"
"alice: 2"
"alice: 3"

We're now maintaining separate counts based only on the value of label. Because the label "alice" in line 11 matched the value of user twice, it is not considered an independent event.

Syntax

console.count([label]);

Parameters

label
A string.
If supplied, count() outputs the number of times it has been called with that label.
If omitted, count() outputs the number of times it has been called at that line.

Specifications

Specification Status Comment
Console API
The definition of 'console.count()' in that specification.
Living Standard Initial definition

Browser compatibilityUpdate compatibility data on GitHub

Desktop
Chrome Edge Firefox Internet Explorer Opera Safari
Basic support Yes 12 30 Yes Yes Yes
Mobile
Android webview Chrome for Android Edge Mobile Firefox for Android Opera for Android iOS Safari Samsung Internet
Basic support ? ? Yes 30 ? ? ?

© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/console/count