How to change value all of keys "isVisible"?
state = {
players: [
{
id: 0,
name: 'Gabriel',
isVisible: false,
},
{
id: 1,
name: 'John',
isVisible: false,
},
]
I have tried:
handleclick = () => {
let players = this.state.players
players = players.map(player => player.set("isVisible", true))
this.setState({
players
})
}
It throw error because president.set is not a function. Any ideas?