InterviewSolution
Saved Bookmarks
| 1. |
What Is A Guard Statement In Swift? |
|
Answer» The GUARD statement evaluates a Boolean CONDITION and PROCEEDS with program execution if the evaluation is true. The guard statement evaluates a Boolean condition and proceeds with program execution if the evaluation is true. |
|