var obj = { array : [] }, foo = function(i) { while(i--) { obj.array[i] = i; } return obj.array; }; foo(10); alert(obj.array)