(aset array idx val)
(aset array idx idx2 & idxv)
Sets the value at the index/indices. Works on JavaScript arrays.
Returns val.
Source
(defn
aset
"Sets the value at the index/indices. Works on JavaScript arrays.\n Returns val."
([array idx val] (cljs.core/aset array idx val))
([array idx idx2 & idxv] (apply aset (aget array idx) idx2 idxv)))