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
Variables that are not re-assigned are referred to as constant variables. So, we recommend using const for such variables instead of let to define because the value of a variable declared with const remains the same within its scope. It cannot be updated or re-declared and also reduces cognitive load …
Occurrences
There are 2 occurrences of this issue in the repository.
Description
Variables that are not re-assigned are referred to as constant variables. So, we recommend using
const
for such variables instead oflet
to define because the value of a variable declared with const remains the same within its scope. It cannot be updated or re-declared and also reduces cognitive load …Occurrences
There are 2 occurrences of this issue in the repository.
See all occurrences on DeepSource → deepsource.io/gh/Zxce3/profile/issue/JS-0242/occurrences/
The text was updated successfully, but these errors were encountered: