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

189
Views
What is the best way of assigning a variable from an object value in React?

I want to know what the better option is when getting values out of an object:

const [currentMonth, setCurrentMonth] = React.useState(getCurrentMonth(language).label)

or:

const { label: labelMon } = getCurrentMonth(language)
const [currentMonth, setCurrentMonth] = React.useState(labelMon)

I want to use the value only once to set the initial state.

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

0

You have to use this once it happens

 useEffect(() => {
const { label: labelMon } = getCurrentMonth(language)
   setCurrentMonth(labelMon )
  },[]);
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!