asetがチェーンされているclojurescriptで結果を見つけました:
(def data (js-obj))
(-> data
(aset "a" "a")
(aset "b" "b"))
(aget data "a") ;=> "a"
(aget data "b") ;=> 'returns nothing'
一方
(-> 1 inc dec) ;=> returns 1, which is fine
asetがチェーンされているclojurescriptで結果を見つけました:
(def data (js-obj))
(-> data
(aset "a" "a")
(aset "b" "b"))
(aget data "a") ;=> "a"
(aget data "b") ;=> 'returns nothing'
一方
(-> 1 inc dec) ;=> returns 1, which is fine