なぜこれが動作していないのかわかりませんが、コンソールにはエラーはないとは言われませんが、2回目の "プロンプト"が表示されるはずです。作業。エラーが見つかりません
const Fanta = 250,Sprite = 250,Cola = 250,Dirol = 450,Snickers = 300,Lays = 800;
var a = prompt("1:Fanta = 250, 2:Sprite = 250, 3:Coca Cola = 250, 4:Dirol = 450, 5:Snickers = 300, 6:Lays = 800");
function math()
{
if(a == 1)
{
alert("You chose Fanta");
var money = prompt("Put money in");
alert("You put in " + money)
if(money >= 250)
{
alert("You just purchased Fanta! Take back" + money - Fanta);
}
}
}
どのような2番目のプロンプト?あなたは決して数学関数を呼び出しません。 – dman2306