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 trialDiane Bond
8,011 PointsA better way of doing this? See my code below, it works, does not need an if statement and is more straight forward.
var randomNumber = getRandomNumber(10); var guess; var guessCount = 0;
function getRandomNumber( upper ) { var num = Math.floor(Math.random() * upper) + 1; return num; } do{(guess = parseInt(prompt("Guess a number from 1 to 10"))); guessCount += 1; } while( guess!==randomNumber );
document.write ("You guessed the correct number of " + guess + ". " + " It took you " + guessCount + " tries to get the correct number.");
1 Answer
Steven Parker
231,236 PointsThere's rarely only one way to construct a solution. The fact that you are seeing more efficient alternatives is evidence of your learning progress and grasp of the material. Good job!
Diane Bond
8,011 PointsDiane Bond
8,011 PointsThank you!