Great job on your project Alex 🙌
I really liked the way you placed the call for each event on your code. 👍
I've just noticed one small thing that might make your code run faster:
- You should consider removing the
sort function calls and instead replace the index attribute of each element with the actual position it is in the array. Your orderArray function:
|
elementArray.sort((a, b) => ((a.index > b.index) ? 1 : -1)); |
Other than that your project looks amazing, keep the good work 😃
Great job on your project Alex 🙌
I really liked the way you placed the call for each event on your code. 👍
I've just noticed one small thing that might make your code run faster:
sortfunction calls and instead replace the index attribute of each element with the actual position it is in the array. YourorderArrayfunction:ToDoProject/src/modules/crudtask.js
Line 21 in 4463adf
Other than that your project looks amazing, keep the good work 😃