What is the ClojureScript analogue of delete from JavaScript?

别来无恙 提交于 2019-12-11 01:15:15

问题


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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!