1 2 3 4 5 6 7 8
function foo() { var a = []; for (var i = 0; i < 4000; ++i) { a.push("string" + i); } } foo();