Skip to content

Let vs Const in JavaScript

Let or const? Which one should you use?

In JavaScript, we commonly declare variables using two keywords: let and const.

When should we use one vs the other?

I always default to using const.

Why?

Because const guarantees the value can’t be reassigned.

When programming, I always think that the best thing that I can use is the thing that can harm me the least.

We have an incredible amount of things that can generate problems.

The more power you give to something, the more responsibility you assign to it.

And we don’t generally want that.

Well, it’s debatable, of course, as everything. I don’t want that, and that’s enough for me.

If I declare a variable using let, I let it be reassignable:

let number = 0
number = 1

and in some cases this is necessary.

If I want the variable to be reassignable, let is perfect.

If I don’t, which is in 80% of the cases, I don’t even what that option be available. I want the compiler (interpreter, in the case of JS) to give me an error.

That’s why I default to const every time I declare a variable, and only switch to let when I want the reassign ability to be allowed.


→ Get my JavaScript Beginner's Handbook

download all my books for free

  • javascript handbook
  • typescript handbook
  • css handbook
  • node.js handbook
  • astro handbook
  • html handbook
  • next.js pages router handbook
  • alpine.js handbook
  • htmx handbook
  • react handbook
  • sql handbook
  • git cheat sheet
  • laravel handbook
  • express handbook
  • swift handbook
  • go handbook
  • php handbook
  • python handbook
  • cli handbook
  • c handbook

subscribe to my newsletter to get them

Terms: by subscribing to the newsletter you agree the following terms and conditions and privacy policy. The aim of the newsletter is to keep you up to date about new tutorials, new book releases or courses organized by Flavio. If you wish to unsubscribe from the newsletter, you can click the unsubscribe link that's present at the bottom of each email, anytime. I will not communicate/spread/publish or otherwise give away your address. Your email address is the only personal information collected, and it's only collected for the primary purpose of keeping you informed through the newsletter. It's stored in a secure server based in the EU. You can contact Flavio by emailing [email protected]. These terms and conditions are governed by the laws in force in Italy and you unconditionally submit to the jurisdiction of the courts of Italy.

Related posts about js: