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.
makePretty(var1); makePretty(var2); makePretty(var3); ...– BFTrick Oct 17 '11 at 15:28