-
Reviewing my code, having in mind Best JS practices.
-
- please avoid initializing many times the getData method, initialize it one time and use it any time.
-
### JavaScript best practices
:white_check_mark: You have made a great job so far
I think Declaring all your variables and constants at the beginning of the file will avoid creating methods withou…
-
## Check the quality of code:
- JavaScript best practices.
- DRY, KISS, and YAGNI rules.
- HTML and CSS best practices.
-
### Best practices rules
1. Use `let` instead of `var` for the variables that need to be changed.
2. Use `const` instead of `var` for the variables that won't be changed.
3. Chage
```js
…
-
# General practices
- [x] Keep all the JavaScript code in JS files
- [ ] Keep your code clean
- some of the variable names are abbreviations, instead of full names.
- some of the variable name…
-
There are no issues detected, followed JavaScript best practices.
-
This is an issue that was created for this project to highlight the need for a code to be refactored using JavaScript best practices
- I really admire how you used the forEach loop rather than the tr…
-
-
- the best JavaScript practices were followed