From b743c5f8896fcc8e77e37212b93992f67cfa1a30 Mon Sep 17 00:00:00 2001 From: Calie Brennan Date: Sat, 12 Sep 2015 16:28:59 -0400 Subject: [PATCH] changed 20% to 25% --- index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 3ec9763..ed85406 100644 --- a/index.html +++ b/index.html @@ -9,7 +9,7 @@ window.onload = function() { var number, tip, total; - alert("Let's calculate your 20% tip."); + alert("Let's calculate your 25% tip."); baseAmount = parseFloat(prompt("How much is the bill?")); @@ -17,7 +17,7 @@ total = calculateTotal(baseAmount, tip); - alert("Your 20% tip is: " + tip); + alert("Your 25% tip is: " + tip); alert("Your total is: " + total); };