Last active
December 28, 2019 16:10
-
-
Save ycui1/f92f346e6af914ddffd817aa03754329 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// instantiate a dictionary | |
var personalInfo = ["firstName": "John", "address": "1100 Main St."] | |
// data retrieval | |
let firstName = personalInfo["firstName"] | |
let middleName = personalInfo["middleName"] | |
// data insertion | |
personalInfo["lastName"] = "Smith" | |
personalInfo["firstName"] = "Mike" | |
// data deletion | |
let deletedAddress = personalInfo.removeValue(forKey: "address") | |
let deletedMiddleName = personalInfo.removeValue(forKey: "middleName") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment