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 React Basics (retired) Thinking in Components Properties Review

Greg Kaleka
Greg Kaleka
39,021 Points

React.js required string - bug or am I doing something wrong?

I kinda think I'm right, but it's entirely possible I'm doing something wrong. Is it the trailing comma that's throwing the challenge for a loop?

quiz screenshot

2 Answers

Dale Severude
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Dale Severude
Full Stack JavaScript Techdegree Graduate 71,350 Points

Yes, drop the comma and the challenge will pass. The last key-value pair shouldn't have a comma, but if there are any previous key value pairs, they do require a comma.

Greg Kaleka
Greg Kaleka
39,021 Points

Thanks Dale. I did get it to pass by removing the comma.

In modern js, it's actually a best practice to have a trailing comma. This is similar to other languages like Python. It makes things go more smoothly if you need to add, delete, or re-arrange the elements in an object, array, etc.

If you watch the videos, you'll see that Jim follows this best practice without fail. I'm going to go ahead and report the bug.