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 trialKimberly Dolcin
4,369 PointsMy code is not showing up on the screen!
alert("Lets do some math!"); var num1 = prompt("Pick a Number"); num1=parseFloat(num1); var num2 = prompt("Pick a Number"); num2 = parseFloat(num2); var message = "</h1>Math with the numbers " + num1 + " and "+ num2 + "</h1>" message+= num1 + "+" + num2 + "=" + (num1+num2); doucment.write(message);
1 Answer
Adomas Domeika
6,151 PointsSpelling mistake.
instead of document you spelled doUCment
Kimberly Dolcin
4,369 PointsKimberly Dolcin
4,369 Pointsomg! THANK YOU!
Adomas Domeika
6,151 PointsAdomas Domeika
6,151 PointsAlso, even though ES6 doesn't require you to use semicolons, but you forgot it in this line:
var message = "</h1>Math with the numbers " + num1 + " and "+ num2 + "</h1>"
;
Kimberly Dolcin
4,369 PointsKimberly Dolcin
4,369 Pointsthank you!