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 trialJason Williams
6,691 PointsCould I get some feedback please to see if this is correct.
var numberCollected = prompt("write a number here between 1 - 100");
var randomNumber = parseInt (Math.random() * (numberCollected - 1)) + 1;
document.write(randomNumber);
4 Answers
David Morisset
13,323 PointsThe code looks nice and it works when I try it in the console, so I'd say it's very good.
Jason Williams
6,691 PointsThank you for your feedback
Steven Parker
231,269 PointsWhy ask only for numbers between 1 and 100? There's no enforced limit and the random generator is capable of picking a number within any specified range (isn't that the point?)
But good solid generator code.
wouterb
1,307 PointsI think you're doing it wrong. The variable numberCollected is still a string when -1 and Math.random are done. I think it should be:
var numberCollected = prompt("write a number here between 1 - 100");
var randomNumber = Math.random() * (parseInt(numberCollected) - 1) + 1;
document.write(randomNumber);
What is the -1 in the code suposed to do?
Jason Williams
6,691 PointsThanks for your kind feedback. Yes I appreciate your comment and have come a long way since this early question and understand the concept of this and returning a number not a string. However thanks again