Conditional Statements Advanced - Lab - Задача 11 - Магазин за плодове
Здравейте, отново имам нужда от малко помощ относно една задача, която се опитвам да реша от 2 дни, но към момента без успехЗнам, че съм объркала някъде скобите, но не мога да резбера къде, като моля за помощ и предварително благодаря. Решението ми е както следва:
function solve(input){
let fruit = input[0];
let day = input[1];
let quentity = Number(input[2]);
let price = 0
if (day === "Monday" || day === "Tuesday" || day === "Wednesday" || day === "Thursday" || "Friday")
switch (fruit){
case "banana": price = quentity*2.50;break;
case "aplle": price = quentity*1.20;break;
case "orange": price = quentity*0.85;break;
case "grapefruit": price = quentity*1.45;break;
case "kiwi": price = quentity*2.70;break;
case "pineapple": price= quentity*5.50;break;
case "grapes":price = quentity*3.85;break;
}else if(day === "Sunday" || day === "Satuday"){
if(fruit=="banana"){
price = quentity*2.70;
if (fruit =="aplle"){
price = quentity*1.25;
if(fruit ==="orange"){
price = quentity*0.90;
if(fruit=="grapefruit"){
price = quentity*1.60;
if(fruit=="kiwi"){
price = quentity*3.00;
if(fruit=="pineapple"){
price= quentity*5.60;
if(fruit=="grapes"){
price = quentity*4.20;
}
}
}
}
}
}
}
}
else{
console.log(`error`)
}
console.log(price)
}