(aget array idx)
(aget array idx & idxs)
Returns the value at the index/indices. Works on JavaScript arrays.
Source
(defn
aget
"Returns the value at the index/indices. Works on JavaScript arrays."
([array idx] (cljs.core/aget array idx))
([array idx & idxs] (apply aget (aget array idx) idxs)))