DEV Community

Cover image for Const, Let or Var which should you use??

Const, Let or Var which should you use??

R-Villar on July 13, 2022

When starting to learn JavaScript, one of the first things we learn is the how to declare variables. Choosing between var, let and const can be the...
Collapse
 
harshad_tweet profile image
Harshad Prajapati

Great explanation!

However, when it comes to const you should be aware that an object's properties can still be mutated.

Same for Arrays arrays elements can be mutated and even you can add or remove items.

Mdn link: Mdn on const in objects and arrays

Collapse
 
lableite profile image
Leonardo Bezerra Leite

Nice post.
The best explanation of variable declarations that I’ve read until now, clear and objective.