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 trialDean Osborne
3,775 PointsConditions 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
14,575 PointsHello 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
Phil Hanson
764 PointsI 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???
Dean Osborne
3,775 PointsDean Osborne
3,775 PointsHi Jhoan,
Thanks for the response. As you suggested I took another look at the operator precedence video. This cleared everything up. Thanks again.
Jhoan Arango
14,575 PointsJhoan Arango
14,575 PointsDean, you are welcome.