Skip to content
Advertisement

Make state related index make true while other state always false

JavaScript

this is my function to make related state true

JavaScript

I need to make index related state true while at the same time states not equal to index need make false, How can I achieve that in the same function above

as a example – in current condition, if I expand (index 1), then expand (index 2) my array looks like

JavaScript

but after expanding (index 2) I expect array like this

JavaScript

to achieve this i need to reset all other states to false expect which matches with index

Advertisement

Answer

If I understand the goal correctly – that only one element should have isExpand = true – then you can map the items and set false or true depending on the ind condition

JavaScript

updated

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement