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
How to use Map in React

I have following state in my component:

const [map, setMap] = useState<Map<number,string>>(new Map())

My question is how to update it properly in React.

Should I use it like this:

map.set(1, "hi")

Or like this:

setMap(prev => {
   let newMap = prev
   newMap.set(1, "hi")
   return newMap
})

Or maybe there is an even better method?

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

0

The first method is definitely not the way to do so, since you are mutating the state. The second method can be used with a slight change:

setMap(prev => {
    const newMap = new Map(prev);
    newMap.set(1, "hi")
    return newMap
}

Here, you are duplicating the map into a new object, instead of referring to the original map reference.

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!