Swift Discussion: Control Flow
What is a conditional?
– It runs multiple checks and runs code based on the results. These statements are part of a more broad concept called control flow.
What is a logical operator?
– Symbols that combine or modify Boolean logic values true and false.
Which are the most common logical operators?
– The most common ones are &&(AND), | |(OR), and !(NOT).
Top comments (0)