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 trialDIJITUL UK
17,246 PointsI can't understand why this isn't working?
var randomNumber = getRandomNumber(10);
var guess;
var guessCount = 0;
var correctGuess = false;
function getRandomNumber( upper ) {
var num = Math.floor(Math.random() * upper) + 1;
return num;
}
do {
guess = prompt("I am thinking of a number between 1 and 10. What is it?");
guessCount += 1;
if(parseInt(guess) === randomNumber) {
correctGuess = true;
}
} while ( ! correctGuess )
document.write('<h1>You Guess the number!</h1>');
document.write('It took you ' + guessCount ' tries to guess the number ' + randomNumber);
I'm not entirely sure why this isn't working / can't spot the syntax error I've made. Can anyone help?
3 Answers
Rune Andreas Nielsen
5,354 PointsI think the problem is that you forgot a + here between guessCount and "tries to guess the number"
document.write('It took you ' + guessCount + ' tries to guess the number ' + randomNumber);
German Tsatsura
Full Stack JavaScript Techdegree Student 10,173 PointsI don't think that is correct Im having the same issue
var randomNumber = getRandomNumber(10); var guess; var guessCount = 0; var correctGuess = false;
function getRandomNumber( upper ) { var num Math.floor( Math.random()* upper ) + 1; return num; }
do { guess = prompt("I am thinking of a number between 1 and 10. what is it?"); } guessCount += 1;
if (parseInt(guess) === randomNumber) { correctGuess = true; } } while ( ! correctGuess )
document.write('you got it') document.write('it took ' + guessCount + 'tries to get ' + randomNumber + ' ');
German Tsatsura
Full Stack JavaScript Techdegree Student 10,173 Points''' var randomNumber = getRandomNumber(10); var guess; var guessCount = 0; var correctGuess = false;
function getRandomNumber( upper ) { var num Math.floor( Math.random()* upper ) + 1; return num; }
do { guess = prompt("I am thinking of a number between 1 and 10. what is it?"); } guessCount += 1;
if (parseInt(guess) === randomNumber) { correctGuess = true; } } while ( ! correctGuess )
document.write('you got it') document.write('it took ' + guessCount + 'tries to get ' + randomNumber + ' '); '''
Scott Callaway
13,311 PointsScott Callaway
13,311 PointsYes, just did some testing of my own in Chrome Dev Tools and can confirm, that is the problematic line.