Find an answer to your question 👍 “Var amount = 100; var discount = 0; if (amount>50) discount = 0.1; else if (amount > 75) discount = 0.15; else if (amount>100) discount = ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Home » Computers & Technology » Var amount = 100; var discount = 0; if (amount>50) discount = 0.1; else if (amount > 75) discount = 0.15; else if (amount>100) discount = 0.2; else discount = 0.25; What is the value of discount? 0 0.1 0.15 0.2