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 trialguram dgebuadze
Front End Web Development Techdegree Student 4,122 Pointsconst should I use pop() in Array? browser allows me, but as I get concept of const I shouldn't change existed value.
If I get clearly I use const I should only add new things, but I can't change already existed ones. But when is used pop() or shift() browser didn't have any problem. can someone help me?
1 Answer
Steven Parker
231,248 PointsThe constant contains a reference to the array. This is the part that cannot be changed — that variable will always reference the array. You cannot re-assign it with something else.
But you can still change what is inside the array, which is what "pop" and "shift" do.