Zastąp obiekt w tablicy inną tablicą na samą tożsamość JavaScript

arr1.map(obj => arr2.find(o => o.id === obj.id) || obj);
Cautious Crayfish