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 trialJonathan Fernandes
Courses Plus Student 22,784 Pointsuse of if-let
Here is my code:
func isDivisible (#dividend:Int, #divisor: Int) -> Bool? {
if dividend % divisor == 0 {
return true
}
return nil
}
if isDivisible(dividend: 4, divisor: 2) == true { println("Divisible")}
else {println("Not Divisible")}
this works to solve the problem... in the answer portion of the video, they used the following code to call the function:
if let culprit = isDivisible(dividend: 4, divisor: 2) { println("Divisible") } else { println("Not Divisible") }
I was confused because I could not figure out the significance of the "if let" keyword. if you take out let, i get an error. Does if let basically mean that as long as this is not nil, execute the code that follows?
1 Answer
Sebastien Thomas
16,502 PointsHi Jonathan,
That's exactly right. Using the if let
syntax is a good habit to take as it is less error-prone because if there is no value returned for some reason, the code in brackets does not execute.
Jonathan Fernandes
Courses Plus Student 22,784 PointsJonathan Fernandes
Courses Plus Student 22,784 PointsPerfect, that makes sense now.
Thanks for the quick response!