function test() { var values = new Array(); values.push.apply(values,arguments); return values; } var a = test(1,2,3);