JS Sprawdź, czy obiekty mają takie same wartości

Object.values(obj1).every((val, index) => val === Object.values(obj2)[index])
WiktorKw