sci icon indicating copy to clipboard operation
sci copied to clipboard

interop on local in CLJS

Open borkdude opened this issue 1 year ago • 0 comments

This works in self-hosted CLJS:

(let [x #js {:foo #js {:bar 1}} y x.foo.bar] y)

Not sure if it is officially supported.

This also works:

user=> (def x #js {:foo #js {:bar 1}})
#'user/x
user=> x.foo.bar
1

That already seems to work in SCI.

borkdude avatar Jul 19 '22 15:07 borkdude