Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

133
Views
Why is my list not rendering on the page using sort ()?

I have this project in react where I need to sort my data in desc and asc. My new list is not being rendered on the page. Here is just a snippet of the code.



const list = [
    {
      Id: "1",
      Time: "2022-01-18T14:52:48Z",
    },
    {
     Id: "3",
     Time: "2022-01-18T15:05:28Z",
    },
    {
      Id: "2",
      Time: "2022-01-18T16:57:58Z",
    },
    {
      Id: "0",
      Time: "2022-01-18T16:00:28Z",
    },
  ];

  list.sort((firstItem, secondItem) => firstItem.Id - secondItem.Id);

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

     ASC :  list.sort(function(a, b) {
           return a.Id - b.Id;
         });


    DESC:  list.sort(function(a, b) {
           return b.Id - a.Id;
         });
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!