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 trial

JavaScript JavaScript Basics (Retired) Making Decisions with Conditional Statements Using Comparison Operators

Cory Sanders
Cory Sanders
3,815 Points

Is my condition statement wrong? Preview confirms my code is correct while check work says it doesn't see the else.

I keep getting Bummer: I don't see the message 'a is NOT greater than b'

script.js
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>');
}
index.html
<!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>

1 Answer

Jennifer Nordell
seal-mask
STAFF
.a{fill-rule:evenodd;}techdegree
Jennifer Nordell
Treehouse Teacher

Hi there, Cory Sanders ! You're close! But remember, this is an alert() which is not subject to formatting at all. It's different from the document.write() which can write HTML tags to the document. The alert() happens at the Window level.

Long story short: remove all your <p> and </p> tags. Alerts do not contain HTML :smiley:

Hope this helps! :sparkles:

Cory Sanders
Cory Sanders
3,815 Points

Hi Jennifer,

Thank you for the response and the advice! I'll remember this going forward.