get
Retrieves the value associated with a specified key
(get key obj)Returns
Parameters
Examples
(get "name" {name: "John", age: 22}) ;; get value for key name
;;=> John
(get "agenda.phone" {agenda: {phone: 22, other: 22}})
;;=> 22
Last updated