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 Super Conditional Challenge

Hello, I have changed comparison statements, but continue getting error message any suggestions.

Need assistance with comparison statements.

script.js
var money = 9;
var today = 'Friday'

if ( money >= 100 || today === 'Friday' ) {
  alert("Time to go to the theater");    
} else if ( money >= 50 || today === 'Friday' ) {
  alert("Time for a movie and dinner");    
} else if ( money > 10 || today === 'Friday' ) {
  alert("Time for a movie");   
} else if ( today || == 'Friday' ) {
  alert("It's Friday, but I don't have enough money to go out");   
} else {
  alert("It is Friday. I need to stay home.");
}
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

Steven Parker
Steven Parker
229,786 Points

I think you may have overlooked part of my answer to your previous question:

The "OR" operator ( || ) is true if either test is true. You want to change the operator so the expressions are true only if both tests are true. You want each if statement to test the money and ( && ) the day. Fix that on each line with two tests.

Also, what's currently on this line is an invalid combination of two operators:

} else if ( today || == 'Friday' ) {

On that line, the original code was checking if it is not Friday, but you want to make it test if it is Friday instead.

And be careful to not change any of the messages, only the test expression operators.

Got it thank you for your patience Steven!

Steven Parker
Steven Parker
229,786 Points

Raedawn Long — Glad to help. You can mark a question solved by choosing a "best answer".

And happy coding!