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

130
Views
React Native I am having issues with adding a number from state

react native is not increasing my number by 2 instead it keeps append new text to my state. I don't have a problem when subtracting the problem is just with adding

const [vol, setVol] = useState(10)

useEffect(()=>{
  setVol(e=> e + 2)
},[])

console.log(vol)
// output 102

I need to increase the state vol (10) by 2 so output should be 12

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

0

e will be a string and hence will follow string addition change it to Number before adding const [vol, setVol] = useState(10)

useEffect(()=>{
  setVol(e=> String(Number(e) + 2))
},[])

console.log(vol)
// output 12
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!