Здравствуйте! Не проходит решение, хотя вроде все условия соблюдены:
export const isIdentical = (x, y) => {
//console.log(Object.values(x).length, '-', Object.values(y).length);
if (Object.values(x).length != Object.values(y).length) {
return false;
} //проверка на размер массивов
let compare = true;
for (const key in x) {
//console.log(x[key], '-', y[key]);
if (x[key] != y[key]) {
compare = false;
}
}
return compare;
}
Что я делаю не так?)