tl;dr my opinion 🤔💭: use const by default, only use let if required.
History
JavaScript has three* ways to declare variables:
var x ...
For further actions, you may consider blocking this person and/or reporting abuse
I’m in the “preventing re-declaration doesn’t really matter, and
let
is two characters shorter thanconst
, so…” camp.People have suggested
const
overlet
before, but I’m unconvinced. What’s so bad aboutlet
being re-declarable? I’ve been usingvar
for years and I don’t think that I’ve ever had a problem specifically with it being re-declarable.Do you mean mutable, vs re-declarable?
var
is re-declarable in that I can writevar x = 123; var x = 456;
and that's totally valid. I supposelet
is re-declarable in a lower scope (inside{}
).Ah yes, I meant re-assignable, not re-declarable.
The argument for
const
overlet
is thatconst
“protects” you from unintended reassignment, but I don’t see that as a problem that requires extra measures.let
everywhere is simple.const
andlet
together is more complex, so there needs to be a good reason for the added complexity to justify it. I don’t like making my code more complex just because something sounds like a cool feature.People who argue for
const
haven’t convinced me yet that accidental reassignment is something that I need to guard against.I hope that makes sense.
Would you use
const
for say, defining magic numbers at the top of your program?Just trying to understand if it fits into your world at all :)
const
is most likely is a very useful feature in certain situations. But what are those situations? I can only guess. I personally don’t think that I needconst
because I don’t think that accidental reassignments are an issue in my own code.So what are those situations? That’s what people arguing for
const
should focus on explaining, in my option.I think I have a good analogy. In CSS, I argue for using this code:
The
!important
part is similar toconst
. It protects thedisplay
property from being re-assigned if thehidden
attribute is present. Why is that important? Because a<div class="foo" hidden>
element could get accidentally rendered with something that is as simple as.foo { display: flex; }
. That.foo
style may not have intended to style that specifichidden
element but it did match it, and now thehidden
attribute is ignored and the element is rendered.So I think I make a good case for adding
!important
in this particular situation.I would like someone to make a good case for why
POST_TIMEOUT
needs to beconst
. What concrete problem can be prevented by that?It's about two things: semantics - code is not just meant for the computer, it's also for humans who read it. Using
const
better signifies to team members and maintainers that this variable shouldn't change. Another is safety by default. Yes, maybe your code doesn't have issues with constants. But it's about baking in safety to your code to reduce the possibility of any errors. It's like how Java class variables are package-private by default (like @flame10a said) and it's highly recommended to make them private, and variables in Rust are actually immutable (non-reassignable) by default. So, in the future, if for example you're coding while running low on sleep, or one of your coworkers decides to work on it and he hasn't worked on the project before, you are a lot less likely to make a mistake.I guess
const
makes (more) sense in large teams that work on large code bases (emphasis on I guess). I would like to see some practical evidence. If somebody was in a concrete situation whereconst
saved them (and their team) from a nasty bug, I would like to read about it, so that I can get a feel ofconst
’s usefulness.If I started using
const
, I would have to decide every time when I declare a new variable, whether or not it should be re-assignable. This mental task seems unnecessary and annoying to me. I would rather spend my brain power on the actual problems that I’m trying to solve in my code.Since I've switched to using
const
, I find that I almost never uselet
. In fact, the rarity oflet
makes it stand out in the code when it is used; it feels like a beacon to anyone reading the code that this variable is special, it's going to be updated later.But I almost never update variables anyway. There are basically two cases where I use it:
for (let i=0; i<num; i++)
looptry ... catch
situation:Neither of those are very common in my code, so I basically never use
let
.I'm glad to hear you're on the same page as me! I like the shining beacon analogy.
For me, both those examples often warrant extracting behavior to some helper function, but I understand how you're using them there, too.
That sounds like a solid approach. I’m surprised that
const
works fine in (the header of)for
-of
statements but not infor
.Yeah, the difference seems to be that in a
for ... of
loop like this:you're essentially grabbing an iterator at the start of the loop, i.e.
myThingsIter = myThings[Symbol.iterator]()
, then at the beginning of each loop runningconst thing = myThingsIter.next()
. It seems to desugar to something like this:You're always assigning a whole new value to the loop variable as opposed to modifying the loop variable as is typical in a classic
for (let i=0; i<n; i++)
loop.Really the only reason you need a
let
in that loop is because you're reassigning the value withi++
, equivalent toi = i+
. In theory you can use aconst
if you're doing something super unusual, like using an object as your loop variable and modifying a property of it:I don't know why anyone would ever want something like this, and there would undoubtedly be cleaner ways to write the code, but it works. You're never reassigning
o
, so no problem with it being aconst
.I very much agree with '
const
first'; it's in the same realm as Java class variables being private by default - no matter how safe your code may be, there's no harm in it being that bit safer!let
is of course good for any local variable that may change within its scope, but otherwise it's safer (e.g. in case of autocomplete shenanigans, or plain misunderstanding), and more visually meaningful, to declare a variable as unchangable.On the odd case of function declarations... I'm very much against using the
function foo() { ... }
syntax out of place; much likevar
, the funcionality of it can be rather backwards, and in turn can be confusing to readers of any level.You also need to remember that
let
andconst
have block scope:This will result in a log of
Actually, not mentioning this was one of the goals of my article. I think this behavior, for new programmers, is logically the most sensible!
(Having a comment pointing it out is fine though 😅)
I disagree regarding const. Spamming the keyword inflates it's meaning to me. I believe you should only use it when you actively intend a variable to be unchangeable - because otherwise when reading another person's code I would conclude you just used the keyword without thought and disregard const as a whole.
I do agree with the rest of your post in general though. Instead of using constants as a default, I'd recommend to rather put thought into your code before deciding which keyword to use.
But to quote you, this is just my opinion piece 😉
I wish it used different keywords from const vs let. Like Kotlins
val
vsvar
setup.I think there's a high number of people who don't like
const
purely because it's two letters longer, yeah. Again, this is opinion, so... ¯\_(ツ)_/¯