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 trialNicholas Wallen
12,278 PointsDoesn'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
231,236 PointsYou 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]
".