rebaz36 / ToDoList-Webpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

JavaScript best practices

rebaz36 opened this issue · comments

Highlights

Followed Correctly

  1. Put all JavaScript codes inside JavaScript files
  2. Correctly implemented type checks,, simplicity, DRY
  3. No commits of console log
  4. No use of window.alert() or window.confirm()
  5. Apps logic is separate from DOM manipulation tasks
  6. No use of 'document.write()' or 'eval'
  7. No code as inline comments

Followed Incorrectly

  1. No use of object destructuring.