Best Practices
Declare Objects and Arrays with const
Use Parameter Defaults
camelCase Variable Names
Use Asynchronous methods when possible
Initialize Variables
Prefer Destructuring
Standards
Do not use Global Variables.
Line Length 100 Max
Use the === Comparison Operator
Use ESLint
2 Space Code Indentation
Index pages
Examples
How to do a Promise
Avoid async-await in a loop
How to use Async and Await
Loop an Array or Object async
Global variables can be overwritten by other scripts many times on accident. Always declare variables with "let" or "const".
Please Login or Register to comment
Please Login or Register to comment