You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would basically recommend that you always use const, with let really only when you need it. I think most instances I've seen where you're using let, you could be using const.
It's particularly helpful to know that a variable isn't changing over the course of its lifetime 💁♂️
The text was updated successfully, but these errors were encountered:
I would basically recommend that you always use
const
, withlet
really only when you need it. I think most instances I've seen where you're usinglet
, you could be usingconst
.It's particularly helpful to know that a variable isn't changing over the course of its lifetime 💁♂️
The text was updated successfully, but these errors were encountered: