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 trialZakk George
4,550 PointsJS quiz stuck
I sort of get what its asking but I'm not exactly sure what Im doing wrong. Its telling me to iterate the array from 1st to last. ( aka .shift(); ) and then print out the result in the console ( console.log(temperatures); ). Confused as to what exactly its asking for.
var temperatures = [100,90,99,80,70,65,30,10];
for ( var i = 0; i < temperatures.length; i += 1) {
temperatures.shift();
}
console.log(temperatures);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
1 Answer
Florian Tönjes
Full Stack JavaScript Techdegree Graduate 50,856 PointsHey Zakk,
by using the 'shift' method you are removing an array item on each pass, which reduces the array's length. On the 4th pass the array only has 4 elements left, because 'i' is 4 and the 'i < temperatures.length' condition is no longer met, the loop breaks and doesn't log all the temperatures to the console.
You can access the array items directly without altering the array:
for ( var i = 0; i < temperatures.length; i++) {
console.log(temperatures[i]);
}
Regards, Florian
Zakk George
4,550 PointsZakk George
4,550 PointsAh I see. I was overthinking it. I had thought it wanted me to remove each element from the array one by one. Thanks!