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 trialDaniel Caine
2,970 PointsCountdown isn't working
Hi there,
Can someone please have a look at my code and tell my why it keeps telling me there are 3 questions remaining?
1 Answer
Ella Ruokokoski
20,881 PointsYou have to build up the prompt string again each time you subtract from the questions variable so it will print the right number in the prompt window. Right now you are prompting the string that holds the value 3 for the questions variable.
so after each subtraction add:
questionsLeft = '[' + questions + ' questions left]';
that will update the variable questionsLeft after the subtraction.
Daniel Caine
2,970 PointsDaniel Caine
2,970 PointsThank You :-)