This section provides a quick description of how primitive parameters and object parameters are all passed as local copies of whatever original variables store.
As shown in a previous section, JavaScript function call follows two rules: primitive parameters
are passed by value and object parameters are passed by reference.
But actually, both rules are derived from a single rule: parameters are passed as local copies of
whatever original variable store:
If a parameter is a primitive variable, a local copy of the variable is created inside the function.
Since a primitive variable contains the value directly, the local copy is a copy of the value.
Therefore we say primitive parameters are passed by value.
If a parameter is an object variable, a local copy of the variable is created inside the function.
since an object variable contains the reference to the object, the local copy is a copy of the reference.
Therefore we say object parameters are passed by value.
Notice that the above explanation uses these assumptions:
A primitive variable contains the value directly.
An object variable contains the reference to the object.
In other words, an object variable contains the address where the object is stored.
Saying that parameters are passed as local copies is actually more accurate,
because passing parameters by reference is a very different programming feature.
Taking VBScript as an example, it supports the "ByRef" keyword to allow
you to pass a function parameter as true reference for any data types, including primitive types.
A VBScript function will not create a local copy of a "ByRef" parameter.
It will use the "ByRef" parameter as an alias of the original variable.
The following VBScript code will swap the original variables by using "ByRef" parameters:
vFirst = "Dog"
vSecond = "Cat"
Call SwapByRef(vFirst, vSecond)
document.writeln(" After Sub: " & vFirst & " | " & vSecond)
Sub SwapByRef(ByRef vLeft, ByRef vRight)
vTemp = vLeft
vLeft = vRight
vRight = vTemp
End Sub
If you try to write a JavaScript function to swap two objects,
you will definitely fail. See the next section for my examples.