Updated for Xcode 14.2
If you want to add 5 to a score
variable, you’re perfectly able to write score = score + 5
if you want. Swift also allows us to write score += 5
to get the same result, but why?
Well, it isn’t for performance reasons – under the hood, Swift turns score += 5
into score = score + 5
just as if we had written it.
Instead, they are just available as a shorthand: a simpler way to write the same thing. This means less typing for us, less code to read, and also less chance of making mistakes – a win all around!
SPONSORED From March 20th to 26th, you can join a FREE crash course for mid/senior iOS devs who want to achieve an expert level of technical and practical skills – it’s the fast track to being a complete senior developer!
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.