Skip to content

Booleans in Swift

New Course Coming Soon:

Get Really Good at Git

This tutorial belongs to the Swift series

Swift provides the Bool type, which can have two values: true and false.

var done = false
done = true

Booleans are especially useful with conditional control structures like if statements or the ternary conditional operator:

var done = true

if done == true {
    //code
}
→ Get my Swift Handbook

Here is how can I help you: