mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-22 09:19:03 +00:00
9 lines
116 B
JavaScript
9 lines
116 B
JavaScript
function foo() {
|
|
var a = [];
|
|
for (var i = 0; i < 4000; ++i) {
|
|
a.push("string" + i);
|
|
}
|
|
}
|
|
|
|
foo();
|