-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change all usages of var to let or const #727
Labels
Comments
shaynak
changed the title
Change all usages of
Change all usages of var to let or const
Jan 18, 2021
var
to let
or const
Hi @shaynak , is the issue still open? Confirming this because it was opened quite a while back. |
@DineshKoushik yep its still open! Here's a quick count on the number of
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently, much of our code uses
var
; we should move away from using it and change all usages tolet
(for variables that will be updated) orconst
(for variables that will not be updated).The text was updated successfully, but these errors were encountered: