Something that will always bug me:
I still think const
should be used for constants (like ALL_CAPS_CONSTANTS) and var
should be the default. Use let
when you really want block-level scoping.
Something that will always bug me:
I still think const
should be used for constants (like ALL_CAPS_CONSTANTS) and var
should be the default. Use let
when you really want block-level scoping.