I am testing om (https://github.com/omcljs/om) and I don't understand whats happen here:
I have a Clojure code that consume a API and put data into a vector. Then in my ClojureScript code I try:
(def urls (map (fn [c] (get c :url )) billings))
(def n (first urls))
(println n) ;; correct value
(.log js/console n) ;; null
Someone can explain this behavior ?
Thanks