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 Swift Basics (retired) Control Flow Exercise: FizzBuzz Generator

Dean Osborne
Dean Osborne
3,775 Points

Conditions closed in parenthesis??

In the solution video, all the conditions are surrounded by parenthesis. Why is this? I had a very similar solution but with no parenthesis.

2 Answers

Jhoan Arango
Jhoan Arango
14,575 Points

Hello Dean :

You may want to take a look at the video for operator precedence. There you’ll find your answer to why he uses them. In this example it’s optional, and you can have your code without the parenthesis.

https://teamtreehouse.com/library/swift-basics/operators/operator-precedence

Dean Osborne
Dean Osborne
3,775 Points

Hi Jhoan,

Thanks for the response. As you suggested I took another look at the operator precedence video. This cleared everything up. Thanks again.

I had this exact answer without parenthesis, lol. Why are they needed if Swift reads code left to right, and don't see where operators come into play???