how can i creat new array and copy all values and than set it as the new array code example
Example: javascript copy array
// this is for array with complex object
var countries = [
{name: 'USA', population: '300M'},
{name: 'China', population: '1.6B'}
];
var newCountries = JSON.parse(JSON.stringify(countries));