### Dictionary Functions #### haskey Checks if a dictionary contains a given key. Example: ``` let mydict = { name: "John", age: 33 } inspect(haskey(mydict, "address")) getkey() ``` #### Getting number of items in dictionary Use #link: size#