|
|
|
|
|
by jsf01
1768 days ago
|
|
It is useful for code readability. When you’re skimming and trying to understand a large chunk of code, if almost all the variables are declared with “const” and then you come across a “let”, you immediately know to look for where it will be mutated elsewhere. |
|