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 trialantonio morales
912 Pointsmy alert is runninig but it wont let me pass the challenge
am i missing something or is this error on tree house
var a = 10;
var b = 20;
var c = 30;
if (a > b) {
alert ("<p>'a is greater than b'</p> ")
} else {
alert ("a is NOT greater than b ")
}
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Cooper Runstein
11,850 PointsYou have an extra space at the end of your NOT string.
antonio morales
912 Pointsthank you Mr. Jose Hernandez-Inzunza and Mr. Cooper Runstein for the help it was the extra space i cant believe I missed that .
Jose Hernandez-Inzunza
7,326 PointsJose Hernandez-Inzunza
7,326 PointsAren't you required to have semi-colons after your alert statements? That's the only thing I can see wrong with this code.
Ex: alert ("<p>'a is greater than b'</p> ");