is it possible to find an object from an array and return an object not his reference?
let found = this.clonedAllIconsMatching.find((obj) => obj.id == header.id);
the found variable is a reference I need to have an object, I want a copy of the object, and I want to change only the properties of the found object, not the object contained in the array.