FACN1 / week4-hibas-angels

Week 4 project repo for Hiba's Angels
0 stars 0 forks source link

You are appending directly to the DOM inside a forEach #37

Open mantagen opened 7 years ago

mantagen commented 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

mattlub commented 7 years ago

would you suggest using innerHTML or creating a whole list then appending that?