enoqueJonas / ToDo-List

A web page that allows you to manage your todo list. You can create, delete and mark todos as done, and you can refresh the page and not lose your list. Built with JavaScript.
MIT License
2 stars 0 forks source link

Morning Session: Code Review #9

Closed Sparktan24 closed 1 year ago

Sparktan24 commented 1 year ago

Hi, good job so far, my only observation is that maybe we can use ES6 Syntax here https://github.com/enoqueJonas/ToDo-List/pull/8/commits/9c4b9bf24599113f81038276f5c23405b6ca2bfe#diff-186fd8d105fb127d8eb15260038e1a4921beb7718d0e57785f6f91fa84dd7861R74-R76

and change it for something like

document.body.innerHTML += `
      <div class="works">
        <ul id="list"><li></li></ul>
      </div>
      `;