How to sort array containing key value pair according to date
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

add a comment |
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

why sort bytime
effectsid
?
– apple apple
Jan 2 at 12:26
add a comment |
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

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

javascript

edited Jan 2 at 12:26
Mini
asked Jan 2 at 12:24


MiniMini
13
13
why sort bytime
effectsid
?
– apple apple
Jan 2 at 12:26
add a comment |
why sort bytime
effectsid
?
– 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
add a comment |
2 Answers
2
active
oldest
votes
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)
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 againvar 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
|
show 1 more comment
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);
It is partially sorting data according to date.
– Mini
Jan 2 at 12:42
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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)
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 againvar 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
|
show 1 more comment
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)
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 againvar 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
|
show 1 more comment
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)
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)
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 againvar 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
|
show 1 more comment
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 againvar 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
|
show 1 more comment
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);
It is partially sorting data according to date.
– Mini
Jan 2 at 12:42
add a comment |
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);
It is partially sorting data according to date.
– Mini
Jan 2 at 12:42
add a comment |
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);
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);
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
why sort by
time
effectsid
?– apple apple
Jan 2 at 12:26