🌱 When is the return keyword not needed in a Swift function
when our code can be boiled down to a single value, such as true, false, “Hello”, or 19, we call that an expression. Expressions are things that can be assigned to a variable, or printed using
print()
. On the other hand, when we’re performing actions such as creating variables, starting a loop, or checking a condition, then we call that a statement