Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript Node.js Basics (2014) Introduction to Node.js The Console

how to use the dir method

i just am not sure, i tried to look up on google what dir method was.

app.js
var name = "Andrew";
var details = { favouriteLanguage: "JavaScript", age: 31, children: 2.4 } 
var errorMessage = "Something bad has occurred";
console.log(name);

console.log(details); 

2 Answers

Per Karlsson
Per Karlsson
12,683 Points

Hello Thomas,

The dir method is also part of the console. Try appending dir instead of log at the end of console and see what happens.

Regards, Per

oh wow, thank you. I noticed you, are at the same level as me points wise