piesieomane / To-do-list

To-do-List website is a page that contains information about listed shores and things to do .
8 stars 0 forks source link

Peer-to-Peer Code Review #7

Open okoyecharles opened 2 years ago

okoyecharles commented 2 years ago

Your Project looks great so far, Although there are some changes I believe would make it look better.

Changes Required ♻

I reccomend you make use of the index functionality in the forEach loop, something like this.

 newArr.forEach((element, i) => { 
   element.index = i; 
 }); 
 task = newArr; 

The document flow should look like this for better readability.

<main class="container">
     <!--- First Section--->
    <section>

    </section>

     <!--- Second Section--->
    <section>

    </section>

     <!--- Third Section--->
    <section>

    </section>
</main>
piesieomane commented 2 years ago

Thanks for the review, I will make the necessary changes to the available issues you made