5.`var` vs `let` vs `const`
Share
The biggest difference is about the variable scope, so you should understand it first.
Before you start explaining the difference, it is recommended to talk about your general rule on which to use in common cases.
Then you can start talking about the technical difference between var
, let
and const