Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3227302
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T16:33:30+00:00 2026-05-17T16:33:30+00:00

I know this must be relatively simple, but I have a dataset of JSON

  • 0

I know this must be relatively simple, but I have a dataset of JSON that I would like to sort by date. So far, I’ve run into problems at every turn.
Right now I have the date stored as this.lastUpdated.
I have access to jquery if that helps, but I realize the .sort() is native JS.
Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T16:33:31+00:00Added an answer on May 17, 2026 at 4:33 pm

    Assuming that you have an array of javascript objects, just use a custom sort function:

    function custom_sort(a, b) {
        return new Date(a.lastUpdated).getTime() - new Date(b.lastUpdated).getTime();
    }
    var your_array = [
        {lastUpdated: "2010/01/01"},
        {lastUpdated: "2009/01/01"},
        {lastUpdated: "2010/07/01"}
    ];
    
    your_array.sort(custom_sort);
    

    The Array sort method sorts an array using a callback function that is passed pairs of elements in the array.

    • If the return value is negative, the first argument (a in this case), will precede the second argument (b) in the sorted array.
    • If the returned value is zero, their position with respect to each other remains unchanged.
    • If the returned value is positive, b precedes a in the sorted array.

    You can read more on the sort method here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this must be a relatively simple problem, but Google has failed me.
I know this must be a n00b question, but I have to implement a
I know that this question must have been asked and answered a million times,
I know there must be a really simple answer to this question, but I
This must be a relatively newb question but I am still stuck. I know
I feel like this must be simple to do but can't get it done
I have some ideas how to tackle this, but it must be a relatively
I know this code use to work, I must have accidentally changed something when
I must admit that I don't really know if this is the right place
I know SQL well but I must be missing something really dumb here. This

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.