Answers for "sorting array by date"

13

javascript order array by date

const sortedActivities = activities.sort((a, b) => b.date - a.date)
Posted by: Guest on April-16-2020
-1

sort date array javascript

const activities = [
  { title: 'Hiking', date: new Date('2019-06-28') },
  { title: 'Shopping', date: new Date('2019-06-10') },
  { title: 'Trekking', date: new Date('2019-06-22') }
]
Posted by: Guest on January-31-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language