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 trialFidelis Chime
6,077 Pointsconditional statement
const a = 10; const b = 20; const c = 30; if(a > b){ console.log("a is not greater than b"); }else{ console.log("b
const a = 10;
const b = 20;
const c = 30;
if(a > b){
console.log("a is not greater than b");
}else{
console.log("b is greater than a ");
}
<!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
Rick Gleitz
47,840 PointsHi Fidelis,
Take a look at your console.log statements. The first one is the opposite of what the challenge is asking for, so take out the "not". The second should be what you currently have in the first statement (with the "not"). Hope this helps.
Rick Gleitz
47,840 PointsHi Fidelis,
Assuming you got the string statements correct now, you probably need to take the space off the end of your second string statement. Sometimes the checker is very sensitive and requires the answer to be exactly right. If you have further problems, post your new code and I'll have a look at it. I did redo the challenge myself with your code corrected except for the space, and that extra space caused the challenge to not pass. Taking it out, it passed. Hope this works for you.
Fidelis Chime
6,077 PointsFidelis Chime
6,077 PointsThanks ricky, but it is not working