Hacker News new | ask | show | jobs
by kenjackson 5488 days ago
I have to admit that this distinction seems really minor. But maybe I'm missing something here. I'd love to see an example if anyone has one.
1 comments

  (get "foo" 0)          ; \f
  (get {:foo 'bar} :foo) ; bar
  (get #{0 1 2} 1)       ; 1
  (get [:a :b :c] 1)     ; :b

  (def path [0 :foo 1])
  (get-in [{:foo "bar"} 1 2] path) ;\a
Being able to deal with data generically in a first class manner is very, very useful. You can only get this in all the languages you've mentioned (including JS) w/ more or less custom code writing.