how to copy an arry react
var newNumbers = Object.assign([], numbers);
Here is what the above code is Doing:
1. We create an array called numbers.
2. We create a new array called newNumbers.
3. We use the Object.assign() method to copy the numbers array into the newNumbers array.
The Object.assign() method takes two parameters:
1. The first parameter is the array you want to copy.
2. The second parameter is the array you want to copy the first array into.
The Object.assign() method returns a copy of the first array.