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 trialYohan Aton
1,738 PointsNot sure if it's the system error or my code... Any help or insight would be great. Thank You!
Trying to complete the task but getting errors - seems it might be the system, but likely might be my code as well. Any help or insight would be greatly appreciated.
Thank you!
1 Answer
JS Lee
8,159 PointsYou should post your code so that we may be able to spot where the problem lies. Remember that a loop requires 3 parts. A while loop is below. You can try out the for loop which is similar to the while loop except for the placement of the 3 parts.
var temperatures = [100,90,99,80,70,65,30,10];
var i = 0;
while (i < temperatures.length){
console.log(temperatures[i]);
i++;
}