Problem Statement
Which operator checks whether two references refer to the exact same class instance in Swift?
Explanation
The `===` operator in Swift checks whether two references point to the **exact same instance** of a class (identity check), whereas `==` checks for equality of value (if implemented). This is only relevant for reference types (classes).
Practice Sets
This question appears in the following practice sets: