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 trialMichael Borsari
50 Pointshow do i pass name to the console log
i'm getting an error on my code that says i'm not passing name to my console log. I'm not sure what it's asking me to do.
console.log("Hello World");
console.error("oops");
console.dir({ name: "andrew", age: 33 });
console.log({ name: });
const name = "Andrew";
const details = { favouriteLanguage: "JavaScript", age: 33, children: 3 }
const errorMessage = "Something bad has occurred";
2 Answers
Masih Abjadi
Front End Web Development Techdegree Graduate 26,328 PointsHi there,
you can use either string concatenation or template literal:
const name = "Andrew";
console.log('Name: ' + name);
console.log(`Name: ${name}`)
deebird
7,558 PointsIt just wants you to use the appropriate console method with the defined variables
const name = "Andrew";
const details = { favouriteLanguage: "JavaScript", age: 33, children: 3 }
const errorMessage = "Something bad has occurred";
console.log(name);
console.dir(details);
console.error(errorMessage);