From a0942072dfc68c493b96836f558c2954136c974a Mon Sep 17 00:00:00 2001 From: Zeezermane Date: Wed, 28 Jun 2023 10:49:25 -0700 Subject: [PATCH] Add changes as directed in the exercises --- script.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script.js b/script.js index fb47e28..3b07646 100644 --- a/script.js +++ b/script.js @@ -3,3 +3,6 @@ //After you're done, try looking around at the CSS and HTML to //see if you understand what's going on :) +function numberAdder(num1, num2){ + return num1 + num2; +} \ No newline at end of file