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 2017 Introduction to Node.js The Console

Use the appropriate console method to print out the details object.

Use the appropriate console method to print out the details object. i tried console.dir(details) several times but i always got error "you did'nt write console anywhere", i also tried console.log(details) and console.error(details) but always get the same result. i think that is a bug on your side. please verify it

app.js
const name = "Andrew";
var details = { favouriteLanguage: "JavaScript", age: 33, children: 3 } 
const errorMessage = "Something bad has occurred";

console.dir(details);

2 Answers

You are getting the error because you removed the code of Task 1. Just add the code of task 1 and it will work perfectly.

yes i done that without removing existing log.. but what i feel that is not a appropriate way of throwing errors that are hard to understand

Thanks anyway for helping beverlygrant