Why does Swift have default values for dictionaries

Pratima S
Feb 23, 2021

Whenever you read a value from a dictionary, you might get a value back or you might get back nil — there might be no value for that key. Having no value can cause problems in your code, not least because you need to add extra functionality to handle missing values safely, and that’s where dictionary default values come in: they let you provide a backup value to use for when the key you ask for doesn’t exist.

For example, here’s a dictionary that stores the exam results for a student:

let results = [
"english": 100,
"french": 85,
"geography": 75
]

As you can see, they sat three exams and scored 100%, 85%, and 75% for English, French, and Geography. If we wanted to read their history score, how we do it

let historyResult = results["history", default: 0]

--

--