I know it is probably a silly question but I can' find an answer by myself, so..
How can I get current index
with this construction .map(([key, value])
?
to access it inside the map function bellow
return (
<Fragment>
{Object.entries(props.values).map(([key, value]) => {
return (
<Button
key={key}
value={value}
/>
);
})}
</Fragment>
);
I know it is probably a silly question but I can' find an answer by myself, so..
How can I get current index
with this construction .map(([key, value])
?
to access it inside the map function bellow
return (
<Fragment>
{Object.entries(props.values).map(([key, value]) => {
return (
<Button
key={key}
value={value}
/>
);
})}
</Fragment>
);
Share
Improve this question
asked May 6, 2020 at 17:06
AndrewAndrew
7951 gold badge10 silver badges23 bronze badges
1 Answer
Reset to default 6You can obtain an index from callback in map
return (
<Fragment>
{Object.entries(props.values).map(([key, value], index) => {
return (
<Button
key={key}
value={value}
/>
);
})}
</Fragment>
);
Please check https://developer.mozilla/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map