How to sort array containing key value pair according to date












-1















Below is array.
What I have to do is sort array according to latest date.
So basically if you look the code after sorting id:12 should come before id:23



I have tried



   myArray.sort(function(a, b) {
return a.date- b.date;
});


but it is not working



0:    
{ id: 23
name: "joe"
price: 2300
date: "2018-06-01T09:48:18.000Z"},
1:
{ id: 12
name: "ali"
price: 300
date: "2018-09-01T09:48:1i.000Z"},









share|improve this question

























  • why sort by time effects id?

    – apple apple
    Jan 2 at 12:26
















-1















Below is array.
What I have to do is sort array according to latest date.
So basically if you look the code after sorting id:12 should come before id:23



I have tried



   myArray.sort(function(a, b) {
return a.date- b.date;
});


but it is not working



0:    
{ id: 23
name: "joe"
price: 2300
date: "2018-06-01T09:48:18.000Z"},
1:
{ id: 12
name: "ali"
price: 300
date: "2018-09-01T09:48:1i.000Z"},









share|improve this question

























  • why sort by time effects id?

    – apple apple
    Jan 2 at 12:26














-1












-1








-1








Below is array.
What I have to do is sort array according to latest date.
So basically if you look the code after sorting id:12 should come before id:23



I have tried



   myArray.sort(function(a, b) {
return a.date- b.date;
});


but it is not working



0:    
{ id: 23
name: "joe"
price: 2300
date: "2018-06-01T09:48:18.000Z"},
1:
{ id: 12
name: "ali"
price: 300
date: "2018-09-01T09:48:1i.000Z"},









share|improve this question
















Below is array.
What I have to do is sort array according to latest date.
So basically if you look the code after sorting id:12 should come before id:23



I have tried



   myArray.sort(function(a, b) {
return a.date- b.date;
});


but it is not working



0:    
{ id: 23
name: "joe"
price: 2300
date: "2018-06-01T09:48:18.000Z"},
1:
{ id: 12
name: "ali"
price: 300
date: "2018-09-01T09:48:1i.000Z"},






javascript angular






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 2 at 12:26







Mini

















asked Jan 2 at 12:24









MiniMini

13




13













  • why sort by time effects id?

    – apple apple
    Jan 2 at 12:26



















  • why sort by time effects id?

    – apple apple
    Jan 2 at 12:26

















why sort by time effects id?

– apple apple
Jan 2 at 12:26





why sort by time effects id?

– apple apple
Jan 2 at 12:26












2 Answers
2






active

oldest

votes


















2














the following example explains how to sort the array by dates






    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)








share|improve this answer
























  • giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

    – Mini
    Jan 2 at 12:30











  • show me the code you implemented

    – user6656728
    Jan 2 at 12:32











  • array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

    – Mini
    Jan 2 at 12:36











  • I have used ` array = Object.values(obj);`

    – Mini
    Jan 2 at 12:37











  • change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

    – user6656728
    Jan 2 at 12:48



















1














By using an ISO 8601 compliant date, you could take the strings directly for sorting with String#localeCompare.






var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);








share|improve this answer


























  • It is partially sorting data according to date.

    – Mini
    Jan 2 at 12:42













Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006354%2fhow-to-sort-array-containing-key-value-pair-according-to-date%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














the following example explains how to sort the array by dates






    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)








share|improve this answer
























  • giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

    – Mini
    Jan 2 at 12:30











  • show me the code you implemented

    – user6656728
    Jan 2 at 12:32











  • array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

    – Mini
    Jan 2 at 12:36











  • I have used ` array = Object.values(obj);`

    – Mini
    Jan 2 at 12:37











  • change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

    – user6656728
    Jan 2 at 12:48
















2














the following example explains how to sort the array by dates






    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)








share|improve this answer
























  • giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

    – Mini
    Jan 2 at 12:30











  • show me the code you implemented

    – user6656728
    Jan 2 at 12:32











  • array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

    – Mini
    Jan 2 at 12:36











  • I have used ` array = Object.values(obj);`

    – Mini
    Jan 2 at 12:37











  • change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

    – user6656728
    Jan 2 at 12:48














2












2








2







the following example explains how to sort the array by dates






    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)








share|improve this answer













the following example explains how to sort the array by dates






    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)








    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)





    var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];
array.sort(function(a,b){
//convert your string into dates
return new Date(a.date) - new Date(b.date);
});
console.log(array)






share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 2 at 12:29







user6656728




















  • giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

    – Mini
    Jan 2 at 12:30











  • show me the code you implemented

    – user6656728
    Jan 2 at 12:32











  • array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

    – Mini
    Jan 2 at 12:36











  • I have used ` array = Object.values(obj);`

    – Mini
    Jan 2 at 12:37











  • change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

    – user6656728
    Jan 2 at 12:48



















  • giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

    – Mini
    Jan 2 at 12:30











  • show me the code you implemented

    – user6656728
    Jan 2 at 12:32











  • array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

    – Mini
    Jan 2 at 12:36











  • I have used ` array = Object.values(obj);`

    – Mini
    Jan 2 at 12:37











  • change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

    – user6656728
    Jan 2 at 12:48

















giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

– Mini
Jan 2 at 12:30





giving error The left-hand side of an arithmetic operation must be of type 'any', 'number', 'bigint' or an enum type.

– Mini
Jan 2 at 12:30













show me the code you implemented

– user6656728
Jan 2 at 12:32





show me the code you implemented

– user6656728
Jan 2 at 12:32













array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

– Mini
Jan 2 at 12:36





array.sort(function(a,b){ return new Date(a.date) - new Date(b.date); });

– Mini
Jan 2 at 12:36













I have used ` array = Object.values(obj);`

– Mini
Jan 2 at 12:37





I have used ` array = Object.values(obj);`

– Mini
Jan 2 at 12:37













change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

– user6656728
Jan 2 at 12:48





change your array to the following and try again var array=[{'date':'2018-06-05T09:48:18.000Z'},{'date':'2018-06-01T09:48:18.000Z'},{'date':'2018-04-01T09:48:18.000Z'}];

– user6656728
Jan 2 at 12:48













1














By using an ISO 8601 compliant date, you could take the strings directly for sorting with String#localeCompare.






var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);








share|improve this answer


























  • It is partially sorting data according to date.

    – Mini
    Jan 2 at 12:42


















1














By using an ISO 8601 compliant date, you could take the strings directly for sorting with String#localeCompare.






var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);








share|improve this answer


























  • It is partially sorting data according to date.

    – Mini
    Jan 2 at 12:42
















1












1








1







By using an ISO 8601 compliant date, you could take the strings directly for sorting with String#localeCompare.






var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);








share|improve this answer















By using an ISO 8601 compliant date, you could take the strings directly for sorting with String#localeCompare.






var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);








var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);





var array =  [{ id: 23, name: "joe", price: 2300, date: "2018-06-01T09:48:18.000Z" }, { id: 12, name: "ali", price: 300, date: "2018-09-01T09:48:1i.000Z" }];

array.sort(function(a, b) {
return b.date.localeCompare(a.date); // desc
});

console.log(array);






share|improve this answer














share|improve this answer



share|improve this answer








edited Jan 2 at 12:45

























answered Jan 2 at 12:25









Nina ScholzNina Scholz

193k15106177




193k15106177













  • It is partially sorting data according to date.

    – Mini
    Jan 2 at 12:42





















  • It is partially sorting data according to date.

    – Mini
    Jan 2 at 12:42



















It is partially sorting data according to date.

– Mini
Jan 2 at 12:42







It is partially sorting data according to date.

– Mini
Jan 2 at 12:42




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006354%2fhow-to-sort-array-containing-key-value-pair-according-to-date%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

Npm cannot find a required file even through it is in the searched directory

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith