1
I have observed in some javascript applications, the use of let
in place of var
when declaring a variable.
So I’m having the following questions:
- What’s the difference between
let
andvar
- At what point should I use one or the other
1
I have observed in some javascript applications, the use of let
in place of var
when declaring a variable.
So I’m having the following questions:
let
and var
Browser other questions tagged javascript
You are not signed in. Login or sign up in order to post.