Parameter
A variable holding an argument received by a function.
Related concepts: ArgumentFunctionVariable
Closest Wikipedia entry: Parameter (computer programming)
Misconceptions about Parameter11 documented Misconceptions
Check YourselfCallerFrameContainsCalleeFormal — Java
Stack frame of caller includes variables for callee's formal parameters
ConstructorParameterIsField — Java
Formal constructor parameters are equivalent to instance variables
ImmutableRequiresFinalParameters — Java
Immutable classes need final constructor/method parameters
NamedTypeParameter — Java
To instantiate a generic type, for each type parameter one has to specify both the name and the type
PrimitiveTypeParameter — Java
Type parameters of generic types can be instantiated with primitive types
StaticCallPolymorphic — Java
A static method call is dispatched polymorphically at runtime based on the argument types
UseOfSelfTypeImpliesRecursiveType — Java
If a class has a method that has a local variable, parameter, or return value with the class as its type, the class is a recursive type
CallbackParametersInCaller — JavaScript
Parameters of a callback function may be written as parameters of the caller function
FunctionOverloading — JavaScript
It is possible to create multiple functions with the same name but with different signatures
NumberOfParametersMatchArguments — JavaScript
Functions must be called with the same number of arguments as defined in their signature
ObjectAsParameterIsCopied — JavaScript
Objects are passed by value