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 trialja5on
10,338 Pointsquestions.length or just use 3.
Hi, on line 20 i used for ( let i = 0; i <= 3; i++ ) {
i didnt use questions.length as quil did my code ran correctly.
I feel that although my code is good maybe if i wanted to ask more questions (say 3 more) i'd have to update my <= 3; to <= 6. Is that why guil uses questions.length as it automatically updates depending if there are more or less questions?
1 Answer
Zaid Khan
12,769 PointsYou are absolutely right. The length property is always going to return a total number of elements in an array. This way you don't have to hard code the length.