- Fork this repository by clicking the "Fork" button in the top right corner of this page. This will create a copy of this repository in your GitHub account.
- Clone your forked repository to your local machine using the following command in your terminal:
git clone https://github.com/your-username/javascript-functions-1-assignment.git- Replace
your-usernamewith your GitHub username.
- Make changes to the files in your local repository as directed in the exercises.
- After making changes, add, commit and push your changes to your remote repository using the following commands in your terminal:
git add .
git commit -m "Add changes as directed in the exercises"
git push origin main
Replace main with the name of the branch you want
- Define a function in script.js that is named numberAdder
- numberAdder should take 2 parameters and it should return the sum of those two values
- After you're done, try looking around at the CSS and HTML to see if you understand what's going on :)