unchecked-set

macrosince v1.9.854Edit
(unchecked-set obj key val)

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-set
  [obj key val]
  (core/list 'js* "(~{}[~{}] = ~{})" obj key val))