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 trialnicolo orcine
3,138 Pointsobject notation not working
when I put the "for (nicos_life in bookInfo)" inside a function, its not working. whats the problem here? thanks
const bookInfo = {
title: "Dukes' book",
author: "Jessa Orcine",
publish_year: 2017
};
function print{
for (nicos_life in bookInfo) {
console.log(nicos_life, ": ", bookInfo[nicos_life]);
};
}
print();
1 Answer
tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsHei Nicolo, looks like your function missing parentheses () from what I can see. Let me know if that helps.
nicolo orcine
3,138 Pointsnicolo orcine
3,138 PointsThank you! i got it!