.count

The .count property returns an integer that represents how many key-value pairs are in a dictionary.

Syntax

dictionaryInstance.count

Example

var fruitStand = [
"Apples": 12,
"Bananas": 20,
"Oranges", 17
]
print(fruitStand.count)
// Output: 3

Contributors

Interested in helping build Docs? Read the Contribution Guide or share your thoughts in this feedback form.

Learn Swift on Codecademy