1 2 3 4 5 6 7 8 9 10
var x; function f() { x = []; for (var i = 0; i < 1; ++i) { x.push(""); } [0].concat(x); } f(); f();