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
I think we have a huge potential to transform as many variables as possible to const and let which allows us to have better scoping (block-scoped variables) and let's us detect unintended mutations early.
We already replaced many lodash functions with native ES6 alternatives so I think it might be good to consequentially do this for the rest of the code, too.
I think we have a huge potential to transform as many variables as possible to
const
andlet
which allows us to have better scoping (block-scoped variables) and let's us detect unintended mutations early.We already replaced many lodash functions with native ES6 alternatives so I think it might be good to consequentially do this for the rest of the code, too.
This issue is weakly related to #48
The text was updated successfully, but these errors were encountered: