I (and the LLMs) spend way more time switching between const and let because the linter tells us to than relying on something not being reassigned because it's declared with const. If you need const, your scopes are too big.
Login to reply
Replies (2)
Just use Rust everywhere... If LLMs are so good, what is the purpose of JavaScript at this point?
so you want const to be used only for global constant, for example const SecondsInDay. Correct?