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
Rather than using let to get the HTML elements, we should use "const" instead so that in the codebase no one can accidentally change the variables. #28
Before :

The let keyword can be replaced by "const" to ensure that variables don't get changed accidentally.
After :

I'd like to work on this issue if it gets approved.