Answers for "sort array by timestamp javascript"

13

javascript order array by date

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

sort by timestamp javascript

// If needed, convert `.timestamp` into a date with `new Date(x.timestamp)`
myList.sort(function(x, y){
    return x.timestamp - y.timestamp;
})
Posted by: Guest on August-01-2021

Code answers related to "sort array by timestamp javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language