Programming in Swift: Fundamentals

Oct 19 2021 · Swift 5.5, iOS 15, Xcode 13

Part 1: Core Concepts

03. Booleans & Comparison Operators

Episode complete

Play next episode

Next
About this episode

Leave a rating/review

See forum comments
Cinema mode Mark complete Download course materials
Previous episode: 02. Swift Playgrounds & Comments Next episode: 04. Challenge: Booleans

Get immediate access to this and 4,000+ other videos and books.

Take your career further with a Kodeco Personal Plan. With unlimited access to over 40+ books and 4,000+ professional videos in a single subscription, it's simply the best investment you can make in your development career.

Learn more Already a subscriber? Sign in.

Notes: 03. Booleans & Comparison Operators

Update Notes: The student materials have been reviewed and are updated as of October 2021.

Heads up... You've reached locked video content where the transcript will be shown as obfuscated text.

So far in this course, you’ve learned about a few types of variables:

let yes: Bool = true

let no: Bool = false
let yes = true
let no = false
let passingGrade = 50
let studentGrade = 74
let studentPassed = studentGrade > passingGrade
let studentFailed = studentGrade < passingGrade
let studentGrade = 74
//let studentPassed = studentGrade > passingGrade
let studentPassed = studentGrade >= passingGrade
let chrisGrade = 49
let samGrade = 99
samGrade == chrisGrade
samGrade != chrisGrade
let catName = "Ozma"
let dogName = "Mango"
catName == dogName
catName > dogName