Dorokhov.codes
15. Quality checklist
Code | Target |
---|---|
"use strict"; |
Always use modern standards in the code. |
const |
Always use constants when we can. |
querySelector() , querySelectorAll() |
Many developers use it only with the document object. We should use it on child nodes as well to speed up the search. |