Using Playground it is easy to see that happens inside loops or objects while the change is happening.
For example, in the code below, the value of x will change from 1 to 4.
import UIKit
for x in [1, 2, 3, 4] {
x
}
(1) Clicking on the eye symbol on the right will give us a quick look.
(2...