react a copy of a array * code example
Example 1: how to copy an arry react
var fruit3 = fruit.slice(0,2);
Example 2: how to copy an arry react
var fruit2 = fruit.slice();
var fruit3 = fruit.slice(0,2);
var fruit2 = fruit.slice();