Skip to main content

let

macrov1.7

cljs.core/let

Available in:BBCLJCLJS
(let [bindings & body])
binding => binding-form init-expr binding-form => name, or destructuring-form destructuring-form => map-destructure-form, or seq-destructure-form Evaluates the exprs in a lexical context in which the symbols in the binding-forms are bound to their respective init-exprs or parts therein. See https://clojure.org/reference/special_forms#binding-forms for more information about destructuring.

No examples yet. Be the first to add one!