jonasschmedtmann / complete-javascript-course

Starter files, final projects, and FAQ for my Complete JavaScript course
https://www.udemy.com/the-complete-javascript-course/?couponCode=C3GITHUB10
15.69k stars 16.81k forks source link

Fixed sort button. Now movements are sorted along with their respective dates #364

Open Shrey-Dixit opened 1 year ago

Shrey-Dixit commented 1 year ago

Fixed the sort button in the bankist app. When we pressed the sort button the displayMovements() was invoked with just the acc.Movements array as argument instead of the whole acc object. I fixed that. Also even after pressing the sort button the dates would remain the same. For each mov in the movs array we find its index in the original acc.Movements array and use that index to create our Date object.