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 trialStephen Ford
2,836 Points.pop
something is wrong here...
question in the quiz is as follows:
Complete the code below. Use a method you were taught in this course to remove the last item from the students array. var lastStudent = students.__________;
as far as I can find .pop is the method that removes the last item from an array but when I enter pop (as the '.' is already in place it says that the answer is incorrect.
am I missing something?
Thanks Stephen
2 Answers
Jeff Lemay
14,268 PointsYes, you're actually missing two somethings... the parentheses!
var lastStudent = students.pop();
Jacob Mishkin
23,118 PointsStephen, you are correct .pop() is used to remove an item of an array and return its value. I just took the quiz and entered "pop()" and it was correct. I'm sure what happened when you took the quiz, but it's working correctly now. I hope this helps.