Consider this javascript code:
var bar = function () { alert("A"); }
var foo = bar;
bar = function () { alert("B"); };
foo();
When running this code I get "A". Is this behavior a part of javascript specification and can I rely on it?
|
Consider this javascript code:
When running this code I get "A". Is this behavior a part of javascript specification and can I rely on it?
| |||
|
feedback
|
|
Yes that is expected and by design. Your question is basically: does The answer is no: the value of | ||||
|
feedback
|
|
I'm a bit late here but I thought I'd give an answer anyways and flesh something out. It's best not to think in terms of pointers and memory references when discussing the internals of JavaScript (or ECMAScript) when dealing with the specifications. Variables are environment records internally and are stored and referenced by name, not memory address. What your assignment statement is doing, internally and by design, is looking up the environment record name (either "foo" or "bar") and assigning the value to that record. So,
is assigning the environment record "bar" the value (anonymous function).
internally calls GetValue("bar") which retrieves the value associated with the record "bar" and then associates that value with the record "foo". Hence, afterwards the original value of bar can still be used as it's now associated with foo. Because JavaScript references by string and not memory address is precisely why you can do things like this:
which is looking up the value based on the property name. | |||
|
feedback
|
|
Yes, there's nothing special about the fact that the variables are referring to functions, there's no aliasing involved.
| ||||
|
feedback
|
|
Yes, this is the correct behavior.
| |||
|
feedback
|
|
This is assigning a variable to an unnamed function, not a pointer to a function | |||
|
feedback
|
|
Yes, you've created a pointer to the original "A" function. When you reassign bar, you're reassigning it, but you're still leaving any references to the old function alone. So to answer your question, yes, you can rely on it. | |||
|
feedback
|
|
Those are not function pointers (and there are no pointers in JS natively). Functions in JS can be anonymous and are first class objects. Hence
creates an anonymous function that alerts "A" on execution;
assign that function to bar;
assign foo to bar, which is the function "A".
rebind bar to an anonymous function "B". This won't affect foo or the other function "A".
Call the function stored in foo, which is the function "A". Actually in languages where there are function points e.g. C it won't affect
| |||
|
feedback
|
|
You are assigning the value of an anonymous function to a variable not a pointer. Here are some examples: "obj2" is a reference of "obj1", you change "obj2", and "obj1" is changed. It will alert
"prop" points to a property that is not an object, "prop" is not a pointer to this object but a copy. If you change "prop", "obj1" is not changed. It will alert
"obj2" is a reference to the "subObj" property of "obj1". if "obj2" is changed, "obj1" is changed. It will alert
| |||
|
feedback
|