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

174
Views
Set values for a HTMLCollection based on key

I have the following where I am setting values based on index.

children in this case are of type HTMLCollection.

The following works fine but finding it to be not very readable and tightly coupled to index.

Is there a way I could use key instead to set values?

// what I have currently
const myRef = React.useRef();
myRef.current.children[0].value = 'apple';
myRef.current.children[1].value = 'orange';
myRef.current.children[2].value = 'pear';
myRef.current.children[3].value = 'mango';

Could I use key, something like how we would do it with a map.

myRef.current.children['some key one'] = 'apple';
myRef.current.children['some key two'] = 'orange';
myRef.current.children['some key three'] = 'pear';
myRef.current.children['some key four'] = 'mango';
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!