unchecked-get

macrosince v1.9.854Edit
(unchecked-get obj key)

Source docstring:
INTERNAL. Compiles to JavaScript property access using bracket notation. Does
not distinguish between object and array types and not subject to compiler
static analysis.
Source code @ clojurescript:src/main/clojure/cljs/core.cljc
(core/defmacro unchecked-get
  [obj key]
  (core/list 'js* "(~{}[~{}])" obj key))