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

Related Articles

HTML | DOM console.trace() Method

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

This console.trace() method is used to display the trace which represents how the code ended up at a certain point. 

Syntax:

console.trace( label )

Parameters: This method accepts single parameter label. 

Example: 

html




<!DOCTYPE html>
<html>
    <head>
        <title>console.trace() Method</title>
        <style>
            h1 {
                color:green;
            }
            body {
                text-align:center;
            }
        </style>
    </head>
    <body>
        <h1>GeeksforGeeks</h1>
        <h2>console.trace() Method</h2>
        <p>Press F12 to view the result</p>
        <button onclick="Function()">Start Trace</button>
        <script>
            function Function() {
              OtherFunction();
            }
            function OtherFunction() {
              console.trace();
            }
        </script>
     
    </body>
</html>

Output:

  

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

  • Chrome 1.0
  • Edge 12.0
  • Internet Explorer 11.0
  • Firefox 6.0
  • Opera 11.0
  • Safari 4.0
My Personal Notes arrow_drop_up
Last Updated : 04 Jul, 2022
Like Article
Save Article
Similar Reads
Related Tutorials