Tengo lo siguiente donde estoy configurando valores basados en index.
children en este caso son del tipo HTMLCollection .
Lo siguiente funciona bien, pero no es muy legible y está estrechamente relacionado con index.
¿Hay alguna manera de que pueda usar la clave en lugar de establecer valores?
// 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';¿Podría usar key, algo así como lo haríamos con un mapa?
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';