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
Remember, you only need to use let when you are going to reassign the value of that variable later on. If the value will not change after the first time you assigned it, then you should use const.
The text was updated successfully, but these errors were encountered:
You are using
let
for declaring/assigning new variables, when you should useconst
.Example
Remember, you only need to use
let
when you are going to reassign the value of that variable later on. If the value will not change after the first time you assigned it, then you should useconst
.The text was updated successfully, but these errors were encountered: