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

iOS

Mikkel Storch
Mikkel Storch
1,955 Points

OR operator

Hello I was was wondering how to make a if statement where it says if input is Monday OR friday do this. But this doesn't work. How should i do this?

if week == "Monday" || "Friday" {

1 Answer

Sharina V. Jones
Sharina V. Jones
11,459 Points

I haven't taken the IOS course yet, but typically the condition for the if statement has to be in parentheses. I think you also probably need to list the variable you're checking on both sides of the OR operator.

Try if (week == "Monday" || week =="Friday") {

Mikkel Storch
Mikkel Storch
1,955 Points

It works, thanks a lot!