How Do You Create A Function?
To create your own function, you need to do four things: Write the return type of the function. Write the name of the function. Inside parenthesis () , list any parameters the function takes. Inside curly brackets {} , write the code that will run whenever the function is called. This is called the body […]