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 trialjedodagbu
1,519 PointsWhy can't we just edit the original array if we want to add items to it?
We are shown in the video that to edit an array that has already been created we use .append() operator. Why can't we just edit the original array without using append
1 Answer
Jennifer Nordell
Treehouse TeacherHi there, Jed Odagbu ! That's a great question. I'm not sure to which video you are referring here, but the reason to alter an array via append versus just changing the original array is flexibility. You might not know in advance what that array should contain.
Take the example of a "To Do" list app. How are you going to know what to put in that "To Do" list array until the user tells you what they need to do? You would likely have an input field where they could add a task and then you append that to the original array.
Hope this helps!