Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

HTML | DOM console.groupEnd() Method

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

The console.groupEnd() method in HTML is used to indicate the end of a group of messages in the console which has been created using the console.group() method. This method does not accept any parameter. 

Syntax:

console.groupEnd()

Below program illustrates the console.groupEnd() method in HTML: 

Example: 

html




<!DOCTYPE html>
<html>
    <head>
        <title>DOM console.groupEnd() Method</title>
        <style>
            h1 {
                color:green;
            }
            h2 {
                font-family: Impact;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>DOM console.groupEnd() Method</h2>
        <p>To view the message in the console press the F12
        key on your keyboard.</p>
        <script>
            console.log
            ("GeeksforGeeks offers the following courses:");
            console.group("Courses");
            console.log("1. fork python");
            console.log("2. fork cpp");
            console.log("3. fork java");
            console.log("4. Interview preparation");
            console.groupEnd();
            console.log("GeeksforGeeks offers tutorials on the " +
            "following data structures :");
            console.group("Data Structures");
            console.log("1. Array");
            console.log("2. Linked List");
            console.log("3. Stack");
            console.log("4. Queue");
            console.groupEnd();
        </script>
    </body>
</html>                   

Output:

  

Console View: 

 

Supported Browsers: The browser supported by console.groupEnd() method are listed below:

  • Google Chrome 1.0
  • Edge 12.0
  • Internet Explorer 11.0
  • Firefox 9.0
  • Opera 11.0
  • Safari 4.0

My Personal Notes arrow_drop_up
Last Updated : 06 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials