Функция getLesserEvil должна сравнивать evilFactor двух объектов и возвращать тот, где он наименьший Как это написать?
Anna нужно написать один if.
if
https://ru.coderslang.com/d/90-task-122 https://ru.coderslang.com/d/85-task-122/2
Coderslang_Master Скажите, пожалуйста, где ошибка?
export const getLesserEvil = (threat1, threat2) => { if(threat2>threat1){ return threat1; } else { return threat2; } }
Anna ошибка в том, что ты сравниваешь два объекта, а нужно сравнивать их внутренние свойства evilFactor.
evilFactor
Начало будет такое:
if (threat1.evilFactor
export const getLesserEvil = (threat1, threat2) => { if (threat1.evilFactor < threat2.evilFactor){ return threat1; } else { if( threat1.evilFactor>threat2.evilFactor) { return threat2; } }
}