What Is The Clojurescript Analogue Of Delete From Javascript?
I'm seeing lots of code using the pattern: delete b[d]; Now I'm translating this to: (aset b d nil) Is that appropriate - or am I losing some crucial data? My question is: **What
Solution 1:
According to http://cljs.info/cheatsheet/ it's js-delete
(js-delete b d)
Post a Comment for "What Is The Clojurescript Analogue Of Delete From Javascript?"