Friday, October 24, 2025
HomeLanguagesJavascriptNode.js console.dir() Method

Node.js console.dir() Method

The console.dir() method is used to get the list of object properties of a specified object. These object properties also have child objects, from which you can inspect for further information.

Syntax:

console.dir( object )

Parameters: This method accepts single parameter which holds the object element.

Example 1:




<!DOCTYPE html>
<html>
  
<head>
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
    </style>
</head>
  
<body>
  
    <h1>neveropen</h1>
      
    <h2>console.dir() Method</h2>
      
    <h3>
        Open console using F12 or Ctrl+Shift+I
    <h3>
  
    <script>
        var geek = { 
            course : "DSA", 
            price : "5000" 
        };
          
        console.dir(geek);
    </script>
</body>
  
</html>


Output:

Example 2:




<!DOCTYPE html>
<html>
<head>
    <style>
        h1 {
            color:green;
        }
        body {
            text-align:center;
        }
    </style>
</head>
  
<body>
  
    <h1>neveropen</h1>
      
    <h2>console.dir() Method</h2>
      
    <h3>
        Open console using F12 or Ctrl+Shift+I
    <h3>
  
    <script>
        console.dir(document.body);
        console.log(document.body);
    </script>
</body>
  
</html>         


Output:

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen 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!
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS