Ошибка https://prnt.sc/1v18plm
Решение
export const getBMICategory = (bmi) => {
if (bmi < 18,5) {
return 'Underweight';
} else if (bmi > 18,5 && bmi < 25) {
return 'Normal weight';
} else if (bmi = 25 && bmi < 30) {
return 'Overweight';
} else {
return 'Obesity'
}
Файл solution.js
import { getBMICategory } from './helper.js';
console.log(getBMICategory(10)); // Underweight
console.log(getBMICategory(20)); // Normal weight
console.log(getBMICategory(40)); // Obesity