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

165
Views
How would I transform an array into a list

So basically, what I want is that if I have an array like this one:

["item", "item1", "item2", "item2", "item2"]

it should be changed into:

 - Item\n- Item1\n- Item2 (3x)

I have trying to figure this out for a few hours now and I can't think of anything, so I thought I should ask here.

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

0

You can do something like this:

const data = ["item", "item1", "item2", "item2", "item2"]


const result = Object.entries(
data.reduce((res, item) => ({...res, [item]: (res[item] || 0) + 1}), {})
).map(([name, count]) => `- ${name}${count > 1?` (x${count})`:''}`).join('\n')

console.log(result)

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!