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

183
Views
change multiple key names using reduce and preserve position

I have the following code. Is it possible to run reduce only once to change the key names? In the example below, I run the reduce function twice. How this can become more efficient? Can this be done with one iteration?

    const newArrayOfObj = rows.map(row => {
        row = Object.keys(row).reduce(
            (a, key) =>
             ({
                ...a,
                [key === 'redirects' ? 'clicks' : key]: row[key],
            }),
            {},
        );

        row = Object.keys(row).reduce(
            (a, key) =>
             ({
                ...a,
                [key === 'tags' ? 'external impressions' : key]: row[key],
            }),
            {}
        );
        return row;
    });
    return newArrayOfObj;
}
about 4 years ago · Juan Pablo Isaza
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!