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 JavaScript Loops, Arrays and Objects Tracking Data Using Objects Mixing and Matching Arrays and Objects

Nicholas Wallen
Nicholas Wallen
12,278 Points

Doesn't an object need to have a name?

Take this for example:

var questions = [ { question: 'How many states are in the United States?', answer: 50}, { question: 'How many continents are there?', answer: 7}, { question: 'How many legs does an insect have?', answer: 6 } ];

"questions" is the name of the array, but since the array consists of three objects, don't the objects themselves need individual names?

1 Answer

Steven Parker
Steven Parker
230,274 Points

You might be thinking of a "class" name, but these object literals don't have a class association.

These objects can all be identified by the name "questions" combined with an index. Fpr example, the "name" of the object related to insects is "questions[2]". It's essentially the same situation you would have with this code:

var numbers = [ 2, 4, 6 ];

If I were to ask "what expression will access the number 4?", the answer would be "numbers[1]".