(map identity "foo") ;; a seq for String is its chars ;=> (\f \o \o) (map identity {:foo :bar}) ;; a seq of a Map is the ;; pairs of key/values ;=> ([:foo :bar])
cljs.user=> (get [:x :y :z] 1) :y cljs.user=> (get 5 :x) nil