Top "Let" questions

In Lisp-like and functional languages, introduces a list of local variables, each (possibly optionally) with its initial value.

What is the temporal dead zone?

I've heard that accessing let and const values before they are initialized can cause a ReferenceError because of something called …

javascript ecmascript-6 constants let
Lazy Var vs Let

I want to use Lazy initialization for some of my properties in Swift. My current code looks like this: lazy …

swift var lazy-initialization let
Let vs. Binding in Clojure

I understand that they're different since one works for setting *compile-path* and one doesn't. However, I need help with why …

binding clojure let
Initializer for conditional binding must have Optional type, not 'AnyObject - Approach

The following code throws a message which says "Initializer for conditional binding must have Optional type, not 'AnyObject'" func parseData2(){ …

ios swift let
Purpose of "let expression" (LetExpr) in the Java compiler?

The Java compiler seems to have support for let expressions in com.sun.tools.javac.tree.* (look for LetExpr). One …

java compiler-construction language-design let
'number' is never reassigned. Use 'const' instead. (prefer-const)

Why in this case eslint 4.17.0 i have error number is never reassigned. Use 'const' instead. (prefer-const). Why i need to …

javascript constants let eslintrc
Is there a Python equivalent of the Haskell 'let'

Is there a Python equivalent of the Haskell 'let' expression that would allow me to write something like: list2 = [let (…

python haskell functional-programming let
Redefining a let'd variable in Clojure loop

OK. I've been tinkering with Clojure and I continually run into the same problem. Let's take this little fragment of …

clojure let function
as keyword in angular 4?

Currently am learning about Angular 4 introduced a new keyword : as. AS keyword – A new addition to the template syntax is …

angular let
Scheme: When to use let, let*, and letrec?

What is the difference between let, let*, and letrec? Please give thorough explanations and examples.

scheme let