The console.count() method in HTML is used to write the number of times the console.count() method is called. The console.count() method can be added to 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 a single parameter label which is optional and used to count the number of times console.count() has been called with this label.
Example: Below program illustrates the console.count() method in HTML:
HTML
<!DOCTYPE html>
< html >
< head >
< title >DOM console.count() Method</ title >
< style >
h1 {
color: green;
}
</ 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 occurrences,
double click thebutton 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:

HTML DOM console.count() Method
Supported Browsers: The browsers are supported by the console.count() Methods are listed below:
- Google Chrome 2.0
- Edge 12.0
- Firefox 30.0
- Opera 11
- Safari 4
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
03 Aug, 2023
Like Article
Save Article