Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I pass variables by reference in JS? I have 3 variables that I want to perform several operations to so I want to put them in a for loop and perform the operations to each one.

pseudo code:

    myArray = new Array(var1, var2, var3);
    for (var x = 0; x < myArray.length; x++){
        //do stuff to the array
    }
    //now do stuff to the updated vars

What is the best way to do this?

share|improve this question
what's your problem? this has nothing to do with pass by reference. JS is always pass by value. – hvgotcodes Oct 12 '11 at 18:20
2  
You're talking about 'pass by reference', but you have no function calls in your example so there is no passing at all in your example. Please clarify what you're trying to do. – jfriend00 Oct 12 '11 at 18:44
Sorry for the confusion. I didn't specifically need to write a function so 'pass by reference' was a poor choice of words. I just want to be able to perform some operations to variables without writing makePretty(var1); makePretty(var2); makePretty(var3); ... – BFTrick Oct 17 '11 at 15:28

3 Answers

up vote 30 down vote accepted

There is no "pass by reference" available in JavaScript. You can pass an object (which is to say, you can pass-by-value a reference to an object) and then have a function modify the object contents:

function alterObject(obj) {
  obj.foo = "hello world";
}

var myObj = { foo: "goodbye" };

alterObject(myObj);

alert(myObj.foo); // "hello world" instead of "goodbye"

Now, in your case, you're not passing anything anyway, as far as I can tell. You can iterate over the properties of an array with a numeric index and modify each cell of the array, if you want.

It's important to note that "pass-by-reference" is a very specific term. It does not mean simply that it's possible to pass a reference to a modifiable object. Instead, it means that it's possible to pass a simple variable in such a way as to allow a function to modify that value in the calling context. So:

 function swap(a, b) {
   var tmp = a;
   a = b;
   b = tmp; //assign tmp to b
 }

 var x = 1, y = 2;
 swap(x, y);

 alert("x is " + x + " y is " + y); // "x is 1 y is 2"

In a language like C++, it's possible to do that because that language does have pass-by-reference.

share|improve this answer
I wouldn't say "there is no pass by reference". Some types of variables are always passed by reference. There is no control over pass by reference vs. pass by value, but there is pass by reference. – jfriend00 Oct 12 '11 at 18:25
6  
There is, in fact, absolutely no pass-by-reference. That's a very specific term. I'll update my answer. – Pointy Oct 12 '11 at 18:26
You can pass a reference to an object or an array which allows you to change the original object or array which I believe is what the OP is actually asking about. – jfriend00 Oct 12 '11 at 18:35
1  
Well, the OP used the terminology but the actual code doesn't seem to involve any "passing" at all :-) I'm not really sure what he trying to do. – Pointy Oct 12 '11 at 18:47
This is the correct answer but not what I intended to ask. I just want to perform operations for a plethora of variables without writing: makePretty(a); makePretty(b); makePretty(c); ...etc... Solutions? – BFTrick Oct 17 '11 at 15:31
show 1 more comment

Workaround to pass variable like by reference:

var a = 1;
inc = function(variableName) {
  window[variableName] += 1;
};

inc('a');

alert(a); // 2
share|improve this answer

You could use eval but I wouldn't recommend it. Instead, just use the variables from your array after.

var myArray = [var1, var2, var3];
for (var x = 0; x < myArray.length; x++){
    //do stuff to the array
}
var1 = myArray[0];
var2 = myArray[1];
var3 = myArray[2];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.