function copyArr(oldArr){ let newArr = []; newArr = JSON.parse(JSON.stringify(oldArr)); return newArr; }