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 trialIvan Kozhunkov
Courses Plus Student 8,480 PointsHave a problem in my JavaScript code
var topNumber = prompt ("Please, enter a first number ");
var useTopNumber = parseInt (topNumber);
var bottomNumber = prompt ("Please, enter a second number ");
var useBottomNumber = parseInt (bottomNumber);
var randomNumber = Math.floor(Math.random() * (useTopNumber - useBottomNumber + 1)) + useBottomNumber;
var message = "<p>Our final number " + randomNumber + " will be situate between " + useTopNumber + " and" + useBottomNumber ".</p>";
document.write(message);
In chrome console : var message - unexpected string
1 Answer
Nicholas Bentzen
15,074 PointsYou are missing a + sign inbetween useBottomNumber and ".</p>";
Ivan Kozhunkov
Courses Plus Student 8,480 PointsThanks a lot! I didn't see that I missed it! :)
Tamas Molnar
1,986 PointsTamas Molnar
1,986 PointsAt the line starting with "var message" a plus sign is missing in front of ".</p>"