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 Review Loops, Arrays, and Objects

A two-dimensional array is an array of objects. I answered True but that's the wrong answer. Why?

Arrays ARE objects. The typeof operator when applied to an array will return "object". I found this information on the W3 Schools website, http://www.w3schools.com/js/js_arrays.asp

Can anyone clarify? Thanks so much.

1 Answer

Iain Diamond
Iain Diamond
29,379 Points

The question asks: "A two-dimensional array is an array of objects.", which is false.

  • An array is a list of objects.
  • A 2D array is a grid of objects, or an array of arrays of objects.
  • A 3D array is a box of objects, or an array of arrays of arrays of objects.