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 trialhimsa devil
Courses Plus Student 297 PointsUse the log method on the console object to print out the name variable.
for the******** ....what this **** means
var name = "Andrew";
var details = { favouriteLanguage: "JavaScript", age: 31, children: 2.4 }
var errorMessage = "Something bad has occurred";
function print(name) {
var outputDiv = document.getElementById('output');
outputDiv.innerHTML = name;
}
console.log({ name: "Andrew" });
Jason Anders
Treehouse Moderator 145,860 PointsTREEHOUSE MODERATOR has edited your answer for appropriate language use in the Community Forum (See Treehouse Terms & Conditions. The Community is a place to connect with other students for help; however, offensive and inappropriate language will not accepted. Yes, coding can be frustrating, but please watch your language used in the Community.
4 Answers
Thomas Nilsen
14,957 Pointsconsole.log(name); //Challenge 1
console.dir(details); //Challenge 2
console.error(errorMessage); //Challenge 3
Bashir Orfani
13,170 Pointshere is the answer:
console.log(name); console.dir(details); console.error(errorMessage);
kiki kiki
Courses Plus Student 652 PointsAnswer of challenge 2 is : console.dir(details)
Carlos Lantigua
5,938 Pointsughhh they purposely put in an error on the last line to make any follow on code not work.. this hurts my soul
const errorMessage = "Something bad has occurred";
himsa devil
Courses Plus Student 297 Pointshimsa devil
Courses Plus Student 297 Pointsthats what i am doing....this **** is making me crazy