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 trialUlyssa Sneed
8,894 PointsStuck again? What could fix this tried, the && operator but nothin
const money = 9;
const today = 'Friday'
if ( money > 10 || today === 'Friday' ) {
alert("Time to go to the theater.");
} else if ( money >= 50 || today === 'Friday' ) {
alert("Time for a movie and dinner.");
} else if ( today === 'Friday' && money > 10 ) {
alert("It's Friday, but I don't have enough money to go out.");
} else {
alert("This isn't Friday. I need to stay home.");
}
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>JavaScript Basics</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
2 Answers
Bert Witzel
Full Stack JavaScript Techdegree Graduate 27,918 PointsHi Ulyssa, so the first conditions in your code are true because of the OR operator, they both have ( today === 'Friday' )
so they will pass. You have to make those conditions false (by using && because both clauses have to be true to pass with &&). Then look at ( today === 'Friday' && money > 10 )
. Since you are using an AND operator both clauses have to be true, and right now one is not true, which is why it's not working. Make sense?
Ulyssa Sneed
8,894 PointsPerfect!! Just solved this issue by doing this exact step, thank u so much!!
Bert Witzel
Full Stack JavaScript Techdegree Graduate 27,918 PointsAwesome! You're welcome :)