For consistency in the codebase, all JavaScript code should convert to use ES6 syntax. https://www.w3schools.com/js/js_es6.asp What this means: - Use `let` instead of `var` - Use `const` when possible - Use arrow functions when possible
For consistency in the codebase, all JavaScript code should convert to use ES6 syntax.
https://www.w3schools.com/js/js_es6.asp
What this means:
letinstead ofvarconstwhen possible