I came across an official Om example in the "examples / mixins" section, there is a definition:
(def MyComponent (let [obj (om/specify-state-methods! (clj->js om/pure-methods))]
(aset obj "mixins"
(js/React.createClass obj)))
What does "#js" mean? I could not find the Clojure documentation for the "#" symbol when it was used this way.
source
share