Variable Assignment

There are 3 methods of variable assignment in JavaScript

Assignment KeywordScopeMutable
The Var KeywordglobalYes
The Let KeywordlocalYes
The Const KeywordlocalNo

Backlinks