The primitive types (Number, String, etc.) are passed by value, but Objects are unknown, because they can be both passed-by-value (in case we consider that a variable holding an object is in fact a reference to the object) and passed-by-reference (when we consider that the variable to the object holds the object itself). Although it doesn't really matter at the end, I want to know what is the correct way to present the arguments passing conventions. Does anybody has a proof of this aside from the Google results?
|
As Shog9 says, it's interesting in Javascript. Consider this example:
This produces the output:
If it was pure pass by value, then changing obj1.item would have no effect on the obj1 outside of the function. If it was pure pass by reference, then everything would have changed. num would be 100, and obj2.item would read "changed". Instead, the situation is that the item passed in is passed by value. But the item that is passed by value is itself a reference. In practical terms, this means that if you change the parameter itself (as with num and obj2), that won't affect the item that was fed into the parameter. But if you change the INTERNALS of the parameter, that will propagate back up (as with obj1). |
|||||||||||||||||
|
|
It's always pass by value, but for objects the value of the variable is a reference. Because of this, when you pass an object and change its members, those changes persist outside of the function. This makes it look like pass by reference. But if you actually change the value of the object variable you will see that the change does not persist, proving it's really pass by value. Example:
Output:
|
|||||||||||||||||
|
|
The variable doesn't "hold" the object, it holds a reference. You can assign that reference to another variable, now both reference the same object. It's always pass by value (even when that value is a reference...). There's no way to alter the value held by a variable passed as a parameter, which would be possible if JS supported passing by reference. |
|||
|
|
|
Javascript is always pass-by-value, everything is a value type. Objects are values, passed as arguments, member functions of objects are values themselves and are passed by value, remember that functions are first-class objects in Javascript. Also, regarding the concept that everything in Javascript is an object, this is wrong, strings, numerics, bools, nulls, undefineds are primitives, on occasion they can leverage some the member functions and properties inherited from their base prototypes but this is only for convenience, it does not mean that they are objects themselves. Try the following for reference
In both alerts you will find the value to be undefined. |
|||||||||||||||
|
|
A very detailed explanation about copying, passing and comparing by value and by reference is in this chapter of "JavaScript: The Definitive Guide" book.
One thing I still cannot figure out. Check code below. Any thoughts?
|
|||||
|
|
Object outside a function is passed into a function by giving a reference to the outside obejct. When you use that reference to manipulate its object, the object outside is thus affected. However, if inside the function you decided to point the reference to something else, you did not affect the object outside at all, because all you did was re-direct the reference to something else. |
||||
|
|
|
There's some discussion about the use of the term "pass by reference" in JS here, but to answer your question:
(From the article mentioned above.) |
|||||
|
|
An easy way to determine whether something is "pass by reference" is whether you can write a "swap" function. For example, in C, you can do:
If you can't do the equivalent of that in Javascript, it is not "pass by reference". |
|||||
|
|
It's call by sharing. Read Michael L. Scott's "Programming Language Pragmatics". |
|||
|
|
|
Primitives are passed by value and objects are passed by reference. This is quite different from other languages like C, VB or Delphi. I can't say how they handle objects and primitives exactly, but I know of VB and Delphi that it can (and should) be specified. php does something similar since version 5: all objects are passed by reference, but all primitives may be passed by reference, if preceeded by an ampersand (&). Otherwise primitives are passed by value. So in javascript, if I pass an object X into a function via a parameter, it will still be X. If you are changing data inside the function (or any other object, but that's not important) that new value is also available outside the function. |
|||
|
|
I have found the extend method of the Underscore.js library very useful when I want to pass in an object as a parameter which may either be modified or replaced entirely.
|
|||
|
|
|
|||
|
|
|
Simple values inside functions will not change those values outside of the function (they are passed by value), whereas complex ones will (they are passed by reference).
|
|||
|
|