I apologize for this seemingly stupid question, but I\'ve been playing with ClojureScript on and off for a few weeks now, and I can\'t figure out this one simple question:
If you want to use Chrome Debugger, you can use the following...
(defn debugger []
(js/eval "debugger"))
(debugger)
this is very much a hack, but it will active chrome's debug mode.
Remember though, Clojure Script uses namespaces, which means if you created some variable thing, then it will be found in my.namespace.thing in chrome console (as expected).