Using Multiple Parameters with Functions part 3
Multiple Parameters
When calling the function, provide the arguments in the same order in which you defined them.
If you pass more arguments than are defined, they will be assigned to an arraycalled arguments. They can be used like this: arguments[0], arguments[1], etc.
Comments
Post a Comment