Var, Let and Const are used to declare variables but variables declared with Var can be reassigned, variables declared with Let can be reassigned, while variables declared with Const cannot be reassigned.
Let and Var can be declared without being initialized while const must be initialized during declaration
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (0)