How to sort a javascript array by date - Stack Overflow

For example in my array i have this datavar mydate = ["2016,10,01","2016,09,13",

For example in my array i have this data

var mydate = [
"2016,10,01",
"2016,09,13", 
"2016,09,05",
"2016,09,09", 
"2016,10,02"];

How to sort this? I want this output:

2016,09,05
2016,09,09
2016,09,13
2016,10,01
2016,10,02

For example in my array i have this data

var mydate = [
"2016,10,01",
"2016,09,13", 
"2016,09,05",
"2016,09,09", 
"2016,10,02"];

How to sort this? I want this output:

2016,09,05
2016,09,09
2016,09,13
2016,10,01
2016,10,02
Share Improve this question edited Oct 5, 2016 at 8:05 AyDee asked Oct 5, 2016 at 8:01 AyDeeAyDee 2211 gold badge5 silver badges14 bronze badges 6
  • 1 There are a number of ways you could do this, super basic example: remove the mas, turn it into an int and use a generic int sort. – DBS Commented Oct 5, 2016 at 8:04
  • 2 mydate.sort() is the least you could do – Hassan Commented Oct 5, 2016 at 8:04
  • @DBS or don't remove anything and sort the string – mplungjan Commented Oct 5, 2016 at 8:07
  • @mplungjan Fair enough, I didn't think about the string equivalents of numbers working correctly in "alphabetical" order, but that makes sense. – DBS Commented Oct 5, 2016 at 8:11
  • stackoverflow./questions/30691066/sort-a-string-date-array – Paul Commented Oct 5, 2016 at 8:11
 |  Show 1 more ment

4 Answers 4

Reset to default 8

A simple mydate.sort() could do that.

You will have to parse date into date object and then sort using date.getTime()

var mydate = [
  "2016,10,01",
  "2016,09,13",
  "2016,09,05",
  "2016,09,09",
  "2016,10,02"
];

mydate.sort(function(a,b){
  var da = new Date(a).getTime();
  var db = new Date(b).getTime();
  
  return da < db ? -1 : da > db ? 1 : 0
});
console.log(mydate)

Use Array#sort method with Date constructor.

var mydate = [
  "2016,10,01",
  "2016,09,13",
  "2016,09,05",
  "2016,09,09",
  "2016,10,02"
];

mydate.sort(function(a, b) {
  return new Date(...a.split(',')) - new Date(...b.split(','));
});

console.log(mydate);

Spread syntax not supported by older browser in that case do it like.

var mydate = [
  "2016,10,01",
  "2016,09,13",
  "2016,09,05",
  "2016,09,09",
  "2016,10,02"
];

mydate.sort(function(a, b) {
  var a1 = a.split(','),
    b1 = b.split(',');
  return new Date(a1[0], a1[1], a1[2]) - new Date(b1[0], b1[1], b1[2]);
});

console.log(mydate);

var mydate = [
  "2016,10,01",
  "2016,09,13",
  "2016,09,05",
  "2016,09,09",
  "2016,10,02"
];

mydate.sort(function(a,b){
  var da = new Date(a).getTime();
  var db = new Date(b).getTime();
  
  return da - db
});
console.log(mydate)

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

相关推荐

  • How to sort a javascript array by date - Stack Overflow

    For example in my array i have this datavar mydate = ["2016,10,01","2016,09,13",

    18小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

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

关注微信