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

124
Views
How can i sort array of objects based on numbers and spefific letters?

i have this array


let arr = [
    {
        "time": "3",
        "wholeObj": "abc mo sa 3 Y",
        "mapEventValue": "Y"
    },
    {
        "time": "3",
        "wholeObj": "abc a 3 G",
        "mapEventValue": "G"
    },
    {
        "time": "3",
        "wholeObj": "cba d 3 S f",
        "mapEventValue": "S"
    },
    {
        "time": "3",
        "wholeObj": "cba z 3 R",
        "mapEventValue": "R"
    }
]

i need to sort the array FIRST based on the time value and after that if the time values are equal i need to sort them based on mapEventValue in following order G Y R S

So in my case all objects are having equal time values 3 I can't find a way to sort them by the mapEventValue property

what i tried

Until now i just managed to sort them by time value

let sorted = arr.sort((a,b) => a.time - b.time)

So my output at the end should be


let arr = [
    {
        "time": "3",
        "wholeObj": "abc a 3 G",
        "mapEventValue": "G"
    },
    {
        "time": "3",
        "wholeObj": "abc mo sa 3 Y",
        "mapEventValue": "Y"
    },
    {
        "time": "3",
        "wholeObj": "cba z 3 R",
        "mapEventValue": "R"
    },
    {
        "time": "3",
        "wholeObj": "cba d 3 S f",
        "mapEventValue": "S"
    },
]
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

So only sort by time if time differs, otherwise sort by the index of your desired sort order.

let sortOrder = 'GYRS';
let arr = [
    {
        "time": "3",
        "wholeObj": "abc mo sa 3 Y",
        "mapEventValue": "Y"
    },
    {
        "time": "3",
        "wholeObj": "abc a 3 G",
        "mapEventValue": "G"
    },
    {
        "time": "3",
        "wholeObj": "cba d 3 S f",
        "mapEventValue": "S"
    },
    {
        "time": "3",
        "wholeObj": "cba z 3 R",
        "mapEventValue": "R"
    }
];

let sorted = arr.sort((a,b) => {
  if (a.time != b.time) {
    return a.time - b.time;
  } else {
    return sortOrder.indexOf(a.mapEventValue) - sortOrder.indexOf(b.mapEventValue);
  }
});
console.log(sorted);

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!