Open mantagen opened 7 years ago
Writing to the DOM is an expensive process (it is not good for performance). Try to create the html and then write it to the DOM in one go.
https://github.com/FACN1/week4-hibas-angels/blob/master/public/index.js#L24-L28
would you suggest using innerHTML or creating a whole list then appending that?
Writing to the DOM is an expensive process (it is not good for performance). Try to create the html and then write it to the DOM in one go.
https://github.com/FACN1/week4-hibas-angels/blob/master/public/index.js#L24-L28