1/6
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
|---|
No study sessions yet.
Argument
The value or variable passed to a function
Call
A statement that contains a method name followed by parentheses.
Local
variables, constants, and objects that are declared within a method and therefore have a scope of limited action
Function declaration
The first line of a function, which contains the function name, access level, and parameters, if any.
Function Parameters
The part of a function declaration that accepts values from the method call.
Pass
Giving data to a function by enclosing the data in parentheses in a method call.
Pass by Value
Passing the value of an argument to a function. The type of data passed depends on whether the argument is a primitive or an object.