When comparing them side-by-side, what are the differences between a function call and a function definition?
function definition gets the word function and code block. function call does not get the word function and no code block
What is the difference between a parameter and an argument?
s
parameter as a placeholder.
when we define a function, we declare parameters and that when we call a function, we pass it argument
Why are function parameters useful?
They serve as placeholder
What two effects does a return statement have on the behavior of a function?
Causes the function to produce a value we can use in our program.
Prevents any more code in the function’s code block from being run.