Advertisement
Guest User

Untitled

a guest
Mar 25th, 2017
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <button id="btn"> Play the Dinner Game </button>
  2.  
  3. <p id="para"></p>
  4.  
  5.  
  6.  
  7. document.getElementById("btn").addEventListener("click", dinnerThing);
  8.  
  9.  
  10.  
  11. function dinnerThing () {
  12. var cost = prompt("how much did it cost?");
  13.  
  14. if(cost == "") {
  15. document.getElementById("para").innerHTML = "sorry please enter an integer";
  16. }
  17.  
  18. var taxRate = prompt("What was the tax rate?");
  19.  
  20. if(taxRate == "") {
  21. document.getElementById("para").innerHTML = "sorry please enter an integer";
  22. }
  23.  
  24.  
  25.  
  26. var taxPaid = cost * taxRate;
  27.  
  28.  
  29. document.getElementById("para").innerHTML = "You paid " + taxPaid + " dollars in tax for your dinner";
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement