DEV Community

Adeola Olayinka
Adeola Olayinka

Posted on

Differences between Var Let and Const

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

Top comments (0)