javascript - Modify arguments in self executing function - Stack Overflow

I want to be able to modify the arguments passed to a self executing function.Here is some sample code:

I want to be able to modify the arguments passed to a self executing function.

Here is some sample code:

var test = 'start';
(function (t) {t = 'end'} )(test);
alert(test) //alerts 'test'

And here is a fiddle. The variable test has not changed. How can I alter it, as in pass-by-reference?

I want to be able to modify the arguments passed to a self executing function.

Here is some sample code:

var test = 'start';
(function (t) {t = 'end'} )(test);
alert(test) //alerts 'test'

And here is a fiddle. The variable test has not changed. How can I alter it, as in pass-by-reference?

Share Improve this question asked Apr 4, 2013 at 22:18 tckmntckmn 59.4k27 gold badges118 silver badges156 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 10

Pass in an object, it is pass-by-reference:

var test = {
    message: 'start'
};
(function (t) {t.message = 'end'} )(test);
alert(test.message)

FYI, Array is also pass-by-reference.

You cannot do that (well, precisely that) in JavaScript. You can do something like this, however:

 var testBox = { test: "hello" };
 (function(tb) { tb.test = "goodbye"; })(testBox);
 alert(testBox.test); // "goodbye"

JavaScript only has pass-by-value in function calls; there's only one corner-case way to have an alias to something like a variable (the arguments object and parameters), and it's sufficiently weird to be uninteresting.

That said, object properties are (usually) mutable, so you can pass object references around in cases where you need functions to modify values.

You can't do this.

The best you can do is pass in an object, and then update that object.

var test = { state: 'start' };
(function (t) {t.state = 'end'} )(test);
alert(test.state); // 'end'

you are just passing the value of test variable as an argument to the function. After changing the argument's value you need to assign back to the test variable.

var test = 'start';
(function (t){t = 'end'; test = t;} )(test);
alert(test) //alerts 'test'

Or

var myObject = {test: "start"};
var myFunc = function (theObject){
    theObject.test = 'end';
}(myObject);
alert(myObject.test);

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743669767a4487585.html

相关推荐

  • javascript - Modify arguments in self executing function - Stack Overflow

    I want to be able to modify the arguments passed to a self executing function.Here is some sample code:

    1天前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信