Answers for "sort by datetime timestamp js"

14

sort by date js

array.sort((a,b) =>  new Date(b.date) - new Date(a.date));
Posted by: Guest on June-18-2021
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 "Javascript"

Browse Popular Code Answers by Language