javascript copy array of objects without reference code example
Example 1: angular clone array without reference
const myClonedArray = Object.assign([], myArray);
Example 2: angular clone array without reference
const myClonedObject = Object.assign({}, myObject);