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 trialDave Molinero
6,416 PointsWhen I complete the code and click "Check Work", I get the "Oh no! There was a communication error" alert.
When I complete the code and click "Check Work", I get the "Oh no! There was a communication error" alert.
I have tried refreshing, restarting the browser, and using multiple browsers, but I get the error every time.
var temperatures = [100,90,99,80,70,65,30,10];
for ( i = 0; i < temperatures.length; i + 1 ) {
console.log( i );
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Loops</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Erik McClintock
45,783 PointsDave,
You have some errors with your for loop. Firstly, remember: You're iterating through items in the 'temperatures' array, so you need to make sure you're logging the value that is stored at the index of that array that you're currently on. Lastly, you need to increment your counter with += or ++ to make sure that i
is adding 1 to itself.
You have:
for ( i = 0; i < temperatures.length; i + 1 ) {
console.log( i );
}
You need:
for ( i = 0; i < temperatures.length; i++ ) {
console.log( temperatures[i] );
}
When I make those changes, the task passes.
Erik
David Tonge
Courses Plus Student 45,640 PointsErik explained but "i + 1" basically made your program into an infinite loop.