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

I'm on using comparison operators test part 3 Im getting Bummer! I don't see the message 'a is NOT greater tha b'.

I've tested this answer in the work space you provided and it works fine but it still gives me Bummer! I don't see the message 'a is NOT greater than b'. Are you sure you wrote the conditional statement correctly?

script.js
var a = 10;
var b = 20;
var c = 30;

if (a > b) { 
  alert('a is greater then b'); 
  } else { 
  alert('a is not greater then b'); 
  }
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>

2 Answers

Justin Iezzi
Justin Iezzi
18,199 Points

Hey John,

You pretty much have it, and the fix here is simple. The issue is that your strings don't match what the code challenge is looking for. In both strings, you've written "then" instead of "than". Fix this, and it should go through fine.

This stuff takes "paying attention to detail" to a whole other level. Thanx for your help man :-)