Variable Assignment
There are 3 methods of variable assignment in JavaScript
| Assignment Keyword | Scope | Mutable |
|---|---|---|
| The Var Keyword | global | Yes |
| The Let Keyword | local | Yes |
| The Const Keyword | local | No |
Backlinks
There are 3 methods of variable assignment in JavaScript
| Assignment Keyword | Scope | Mutable |
|---|---|---|
| The Var Keyword | global | Yes |
| The Let Keyword | local | Yes |
| The Const Keyword | local | No |