Skip to content

Instantly share code, notes, and snippets.

@iku000888
Created July 4, 2017 22:18
Show Gist options
  • Save iku000888/90d2c018bd3cf2a6f40f26be443f4299 to your computer and use it in GitHub Desktop.
Save iku000888/90d2c018bd3cf2a6f40f26be443f4299 to your computer and use it in GitHub Desktop.
Objectに対してaget/asetを使うな、という話 ref: http://qiita.com/iku000888/items/069cf2a84c2d9be5f2da
(.-property an-object)
(aget an-object "property")
(cljs.user.an-object["property"])
(require '[goog.object :as o])
(o/get #js {:foo "bar} "foo")
=> "bar"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment