Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Lesson8:chap 11

function scanAndPay(item, amount)
{
console.log("Welcome to scan and pay service");
console.log(`Payment of ${amount} done for purchasing ${item}.`);
}

function orderFood(item)
{
switch(item)
{
case "Burger":
scanAndPay("Burger",50);
break;
case "Cold Drink":
scanAndPay("Cold Drink",30);
break;
case "Pizza":
scanAndPay("Pizza",100);
break;
}
}
orderFood("Pizza");
by

1 Answer

spoorthy
function scanAndPay(item, amount)
{
console.log("Welcome to scan and pay service");
console.log(`Payment of ${amount} done for purchasing ${item}.`);
}

function orderFood(item)
{
switch(item)
{
case "Burger":
scanAndPay(item,50);
break;
case "Cold Drink":
scanAndPay(item,30);
break;
case "Pizza":
scanAndPay(item,100);
break;
}
}
orderFood("Pizza");

Login / Signup to Answer the Question.