Crossover for Work interview question

Difference between let vs Var

Interview Answers

Anonymous

Oct 20, 2018

Basically the same var is functional while let is blocked

1

Anonymous

Oct 20, 2018

The main difference is the scope var is scoped to the next function block and lets scoped to the next enclosing block

1