我可以在Clojurescript中有一个JS lambdas吗?我有过
.then((entry) => console.log(entry))
它在CLJS中是如何工作的?
发布于 2018-02-28 13:55:02
lambda是用fn制作的
fn
(.then promise (fn [entry] (.log js/console entry)))
https://stackoverflow.com/questions/49031182
相似问题