let arr =["a","b","c"]; // ES6 way const copy = [...arr]; // older method const copy = Array.from(arr);