问题
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 is the ClojureScript analogue of delete
from JavaScript? **
回答1:
According to http://cljs.info/cheatsheet/ it's js-delete
(js-delete b d)
来源:https://stackoverflow.com/questions/36840372/what-is-the-clojurescript-analogue-of-delete-from-javascript