What is a function in JavaScript?
to do something
Describe the parts of a function definition.
function name(parameter) {
}Describe the parts of a function call.
function name and arguments
When comparing them side-by-side, what are the differences between a function call and a function definition?
function definition sets up solution function call , calls what ever that definition does
What is the difference between a parameter and an argument?
parameters to define the function
argument is what is going to be stored