What is a function?
a series of statements grouped together to perform a specific task
Why are functions useful?
they can be used in a myriad of situations
How do you call a function?
function();
What are the parts of a function definition?
function keyword, function name, parameters and code block What is the difference between a parameter and an argument? a parameter a name that you pass the arguement into