How to Sort a Javascript Unix Timestamp Array - Stack Overflow

I have a Array Containing Unix time stamps and i want to sort that array any one know how to do it? or

I have a Array Containing Unix time stamps and i want to sort that array any one know how to do it? or maybe converting it to simple date format and then sorting them any way?

Please also give example

I have tried this but didn't work Jquery - Fastest way to sort an array by timestamp

My Code :

//where rawutimes is unsorted unix time array
console.log(rawutimes);


 // output ["1423857905", "1423611874", "1422953913", "1423499856", "1423502234", "1423502884", "1423503754", "1423510832", "1423511445", "1423514134", "1423358619", "1423583825", "1423713297", "1423713401", "1423735601", "1423772523", "1423768351", "1423817039", "1423166917", "1423446473", "1423446761", "1423835014", "1423858124", "1423857905", "1423855048", "1423852400", "1423852313", "1423852210", findIndex: function, find: function]

thesorted = rawutimes.sort(function(x, y){
    return x.timestamp - y.timestamp;
});

//printing the sorted unix time array       
console.log(thesorted);

//Output : ["1423857905", "1423852210", "1422953913", "1423499856", "1423502234", "1423502884", "1423503754", "1423510832", "1423511445", "1423514134", "1423358619", "1423583825", "1423713297", "1423713401", "1423611874", "1423772523", "1423768351", "1423817039", "1423166917", "1423446473", "1423446761", "1423835014", "1423858124", "1423857905", "1423855048", "1423852400", "1423852313", "1423735601", findIndex: function, find: function]

//Converted to Readable date format to confirm if it's sort or not?
rtimes = [];

for (var i = 0; i < rawutimes.length; i++) {
    rtime = timeConverter(thesorted[i]);
    rtimes.push(rtime);
};

//output 


//["14,Feb 2015 1:5:5", "13,Feb 2015 23:30:10", "3,Feb 2015 13:58:33", "9,Feb 2015 21:37:36", "9,Feb 2015 22:17:14", "9,Feb 2015 22:28:4", "9,Feb 2015 22:42:34", "10,Feb 2015 0:40:32", "10,Feb 2015 0:50:45", "10,Feb 2015 1:35:34", "8,Feb 2015 6:23:39", "10,Feb 2015 20:57:5", "12,Feb 2015 8:54:57", "12,Feb 2015 8:56:41", "11,Feb 2015 4:44:34", "13,Feb 2015 1:22:3", "13,Feb 2015 0:12:31", "13,Feb 2015 13:43:59", "6,Feb 2015 1:8:37", "9,Feb 2015 6:47:53", "9,Feb 2015 6:52:41", "13,Feb 2015 18:43:34", "14,Feb 2015 1:8:44", "14,Feb 2015 1:5:5", "14,Feb 2015 0:17:28", "13,Feb 2015 23:33:20", "13,Feb 2015 23:31:53", "12,Feb 2015 15:6:41"]


//result array not sorted

Thanks

I have a Array Containing Unix time stamps and i want to sort that array any one know how to do it? or maybe converting it to simple date format and then sorting them any way?

Please also give example

I have tried this but didn't work Jquery - Fastest way to sort an array by timestamp

My Code :

//where rawutimes is unsorted unix time array
console.log(rawutimes);


 // output ["1423857905", "1423611874", "1422953913", "1423499856", "1423502234", "1423502884", "1423503754", "1423510832", "1423511445", "1423514134", "1423358619", "1423583825", "1423713297", "1423713401", "1423735601", "1423772523", "1423768351", "1423817039", "1423166917", "1423446473", "1423446761", "1423835014", "1423858124", "1423857905", "1423855048", "1423852400", "1423852313", "1423852210", findIndex: function, find: function]

thesorted = rawutimes.sort(function(x, y){
    return x.timestamp - y.timestamp;
});

//printing the sorted unix time array       
console.log(thesorted);

//Output : ["1423857905", "1423852210", "1422953913", "1423499856", "1423502234", "1423502884", "1423503754", "1423510832", "1423511445", "1423514134", "1423358619", "1423583825", "1423713297", "1423713401", "1423611874", "1423772523", "1423768351", "1423817039", "1423166917", "1423446473", "1423446761", "1423835014", "1423858124", "1423857905", "1423855048", "1423852400", "1423852313", "1423735601", findIndex: function, find: function]

//Converted to Readable date format to confirm if it's sort or not?
rtimes = [];

for (var i = 0; i < rawutimes.length; i++) {
    rtime = timeConverter(thesorted[i]);
    rtimes.push(rtime);
};

//output 


//["14,Feb 2015 1:5:5", "13,Feb 2015 23:30:10", "3,Feb 2015 13:58:33", "9,Feb 2015 21:37:36", "9,Feb 2015 22:17:14", "9,Feb 2015 22:28:4", "9,Feb 2015 22:42:34", "10,Feb 2015 0:40:32", "10,Feb 2015 0:50:45", "10,Feb 2015 1:35:34", "8,Feb 2015 6:23:39", "10,Feb 2015 20:57:5", "12,Feb 2015 8:54:57", "12,Feb 2015 8:56:41", "11,Feb 2015 4:44:34", "13,Feb 2015 1:22:3", "13,Feb 2015 0:12:31", "13,Feb 2015 13:43:59", "6,Feb 2015 1:8:37", "9,Feb 2015 6:47:53", "9,Feb 2015 6:52:41", "13,Feb 2015 18:43:34", "14,Feb 2015 1:8:44", "14,Feb 2015 1:5:5", "14,Feb 2015 0:17:28", "13,Feb 2015 23:33:20", "13,Feb 2015 23:31:53", "12,Feb 2015 15:6:41"]


//result array not sorted

Thanks

Share Improve this question edited May 23, 2017 at 11:51 CommunityBot 11 silver badge asked Feb 13, 2015 at 19:59 Mary HempelMary Hempel 811 gold badge2 silver badges5 bronze badges 4
  • Could you perhaps post the code you tried? It might just be a simple error on your part. – jwang Commented Feb 13, 2015 at 20:01
  • [1,2,3].sort(function(a,b){return a-b;}); (numbers are dates are the same as seen from sort() ) – dandavis Commented Feb 13, 2015 at 20:01
  • Post your code first what you have tried – Mukesh Agarwal Commented Feb 13, 2015 at 20:06
  • I added the code please take a look! – Mary Hempel Commented Feb 13, 2015 at 20:21
Add a ment  | 

2 Answers 2

Reset to default 10

You have a list of strings, but use .timestamp in the sort function. Just remove it:

rawutimes = ["1423857905", "1423611874", "1422953913", "1423499856", "1423502234", "1423502884", "1423503754", "1423510832", "1423511445", "1423514134", "1423358619", "1423583825", "1423713297", "1423713401", "1423735601", "1423772523", "1423768351", "1423817039", "1423166917", "1423446473", "1423446761", "1423835014", "1423858124", "1423857905", "1423855048", "1423852400", "1423852313", "1423852210"]

thesorted = rawutimes.sort(function(x, y){
    return x - y;
});

rtimes = thesorted.map(function(x) {
  return new Date(x * 1000);
});

document.write(rtimes.join("<br>"))

Try this, perfectly sorted, checked in Chromium browser and Firefox:

<!DOCTYPE html>
<html>
<head>
<script>
var rawutimes = ["1423857905", "1423611874", "1422953913", "1423499856", "1423502234", "1423502884", "1423503754", "1423510832", "1423511445", "1423514134", "1423358619", "1423583825", "1423713297", "1423713401", "1423735601", "1423772523", "1423768351", "1423817039", "1423166917", "1423446473", "1423446761", "1423835014", "1423858124", "1423857905", "1423855048", "1423852400", "1423852313", "1423852210"]
console.log("Raw unix timestamps: " + rawutimes);
var formatted = [];
for (var i = 0; i < rawutimes.length; ++i) {
    var d = new Date(parseInt(rawutimes[i]) * 1000);
    formatted.push(d);
}
thesorted = formatted.sort(function (x, y) {
        return y - x;
        });
console.log("Formatted: " + thesorted);
</script>
</head>
<body>
</body>
</html>

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743695148a4491630.html

相关推荐

  • How to Sort a Javascript Unix Timestamp Array - Stack Overflow

    I have a Array Containing Unix time stamps and i want to sort that array any one know how to do it? or

    17小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信