HTML | DOM console.count() Method
The console.count() method in HTML is used to write number of times the console.count() method is called. The console.count() method can be added a label that will be included in the console view. The label is an optional parameter sent to the console.count() method.
Syntax:
console.count( label )
Parameters: This method accepts single parameter label which is optional and used to count the number of times console.count() has been called with this label.
Below program illustrates the console.count() method in HTML:
Example:
<!DOCTYPE html> <html> <head> <title>DOM console.count() Method</title> <style> h1 { color:green; } h2 { font-family: Impact; } body { text-align:center; } </style> </head> <body> <h1>GeeksforGeeks</h1> <h2>DOM console.count( ) Method</h2> <p>To view the message in the console press the F12 key on your keyboard.</p> <p>To count the number of occurences, double click the button below :</p><br> <button ondblclick="count_console()">Run Loop</button> <script> function count_console() { for (i = 0; i < 10; i++) { console.count(); } } </script> </body> </html> |
Output:

See console view after double clicking on the Run Loop Button:

Supported Browsers: The browsers supported by console.count() Method are listed below:
- Google Chrome
- Apple Safari
- Firefox 30.0
- Opera
- Internet Explorer
Recommended Posts:
- HTML | DOM contains() Method
- HTML | DOM click() Method
- HTML | DOM getNamedItem() Method
- HTML | DOM getElementsByName() Method
- HTML | DOM Storage key() Method
- HTML | DOM getAttributeNode() Method
- HTML | DOM insertAdjacentHTML() Method
- HTML | DOM insertAdjacentElement() Method
- HTML | DOM isSameNode() Method
- HTML | DOM cloneNode() Method
- HTML | DOM getBoundingClientRect() Method
- HTML | DOM removeNamedItem() Method
- HTML | DOM querySelector() Method
- HTML | DOM getElementsByClassName() Method
- HTML | DOM querySelectorAll() Method
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



