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 trialOussama Moulana
2,977 PointsSo basically, an Array is a an Object?
In the video Dave call an array an object at 5:20 So Arrays are Objects too?
3 Answers
tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsHi Oussama, pretty much everything in Javascript is an object, hence the name of object oriented programming language.
Arrays use and numerical index whereas objects use key value pairs.
Oussama Moulana
2,977 PointsThank you Tobias for your explanation, it's cristal clear for me now
Karly Lamm
7,865 PointsYes! an object basically means that it has properties and methods! If you look at an array, it does indeed have properties like .length, and also methods like .concat, .join, etc... Properties tell something about the object, and methods do something to the object! JS is object-oritented! Hope this helps :)
Zara Sales
UX Design Techdegree Student 787 PointsZara Sales
UX Design Techdegree Student 787 PointsThen why we have Java as object oriented programming language?