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 Multiple Items with Arrays Removing Items From Arrays

Blaize Lange
Blaize Lange
2,298 Points

are push() and unshift() only really useful in more complicated code?

why not just add what you want to the existing array with a simple comma at the end or the beginning instead of writing out more code? Same thing with pop and shift.

1 Answer

Hi Blaize,

Yes, generally these methods would be used farther down in your code. There's not much point in creating an array of numbers and then immediately pushing another number onto the end of it.

Likely you would initialize your array with whatever values were appropriate and then some other code would run. Further down, based on those results, you may need to add or remove values using these methods.

The examples in the videos are probably kept simple so you can learn the concepts.