From 9eb9fe24c2126a9eaf5e7a846a974b9fc2dc208b Mon Sep 17 00:00:00 2001 From: John Godsey Date: Mon, 24 Aug 2020 12:07:50 -0700 Subject: [PATCH] commit test 12:07: --- .../solution-code/currency-converter/js/app.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/03-21-functions-and-scope/solution-code/currency-converter/js/app.js b/03-21-functions-and-scope/solution-code/currency-converter/js/app.js index d0bfb7e..2ee32b4 100644 --- a/03-21-functions-and-scope/solution-code/currency-converter/js/app.js +++ b/03-21-functions-and-scope/solution-code/currency-converter/js/app.js @@ -18,4 +18,6 @@ function convert(){ function usdToBTC(usd) { convertedBTC = usd / btcRate; return convertedBTC; -} \ No newline at end of file +} + +//this is a test \ No newline at end of file