HTML DOM console.trace() Method

Last Updated : 10 Aug, 2026

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 a single parameter label. 

Example: In this example, we will use a console.trace() method

HTML
<!--Driver Code Starts-->
<!DOCTYPE html>
<html>
  
<head>
    <title>console.trace() Method</title>
    <style>
        h1 {
            color: green;
        }
    </style>
</head>

<body>
    <h1>GeeksforGeeks</h1>
    <h2>console.trace() Method</h2>
    <p>Press F12 to view the result</p>
<!--Driver Code Ends-->

    <button onclick="Function()">
      Start Trace
      </button>
    <script>
        function Function() {
            OtherFunction();
        }
        function OtherFunction() {
            console.trace();
        }
    </script>

<!--Driver Code Starts-->
</body>
  
</html>
<!--Driver Code Ends-->

Output:

Comment