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

185
Views
How to prevent TypeScript Record<string, any> from sorting object properties to alphabetical order?

Desired output:

{
  "z": 123,
  "y": 123,
  "x": 123
}

Example

const myArray = ['z', 'y', 'x'];
const r: Record<string, any> = {};

for (propKey of myArray)
   r[propKey] = 123;

Output:

{
  "x": 123,
  "y": 123,
  "z": 123
}
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

From MDN

Although the keys of an ordinary Object are ordered now, this was not always the case, and the order is complex. As a result, it's best not to rely on property order.

Alternatives

  • Array

  • Maps, you can use map to iterate and its entries are ordered

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!