react update state object array code example

Example 1: how to update react state array

const [myArray, setMyArray] = useState([1,2,3])

// to update
setMyArray([...myArray, 4]); // --> myArray = [1,2,3,4]

Example 2: react native update state array of objects

let markers = [ ...this.state.markers ];
markers[index] = {...markers[index], key: value};
this.setState({ markers });

Example 3: how to update array in react state

this.setState(prevState => ({
  arrayvar: [...prevState.arrayvar, newelement]
}))

Example 4: react arrays

const numbers = [1, 2, 3, 4, 5];
const listItems = numbers.map((number) =>  <li>{number}</li>);

Tags:

Misc Example