Created
October 27, 2021 09:24
-
-
Save Octagon-simon/6db0d3030e079e8c9877aae70caa1e8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function saveForm(fname, lname, email) { | |
| //Save form inputs to our Array | |
| fnameArry.push(fname); | |
| lnameArry.push(lname); | |
| emailArry.push(email); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment