Function Parameters: Summary

This lesson summarizes the how parameters can be passed to functions.

We'll cover the following...

Summary #

  • A parameter is what the function takes from its calling function to accomplish its task.

  • An argument is an expression (e.g. a variable) that is passed to a function as a parameter from the calling function.

  • Every argument is passed by copy.

...