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 trialAnthony Lakin
11,687 PointsWhy is it not seeing the else statement?
var a = 10; var b = 20; var c = 30; if (a > b) { window.alert("<p>a is greater than b</p>"); } else { window.alert("<p>a is not greater than b</p>"); }
var a = 10;
var b = 20;
var c = 30;
if (a > b) {
window.alert("<p>a is greater than b</p>");
} else {
window.alert("<p>a is not greater than b</p>");
}
<!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
andren
28,558 PointsThe else
statement is fine. The issue is the string you are passing the alert
method. You don't need to include <p> tags with the message. That is only done when using the document.write
method due to the fact that it writes HTML directly to your webpage. The alert
method just pops up a message, it does not involve HTML at all.
If you remove the tag like this:
var a = 10;
var b = 20;
var c = 30;
if (a > b) {
window.alert("a is greater than b");
} else {
window.alert("a is not greater than b");
}
Then your code will pass. Though it's also worth mentioning that you don't really need to include window.
before the alert
method. alert
by itself is treated as an alias for window.alert
in all browsers I know of.
Chris Jardine
13,299 PointsHi Anthony
Delete the "<p>" & "</p>" from the alerts.