17
These are the 'ingredients' you give to a function. If you have a function called make_stew(meat), the 'meat' is the parameter.
You can call it with make_stew("Chicken") or make_stew("Beef"). The function stays the same, but the result changes based on what you give it.
Log in to add a comment.