diff --git a/script.js b/script.js index 702f428..ca3a409 100644 --- a/script.js +++ b/script.js @@ -1 +1,9 @@ console.log("hello"); + +function calcTip(bill){ + return 0.15 +} +let bill = 200 + + +console.log(`The bill was ${bill}, the tip was ${bill*0.15}, and the total value ${bill+bill*0.15}`)