mirror of
https://github.com/tc39/test262.git
synced 2025-05-03 14:30:27 +02:00
8 lines
132 B
JavaScript
8 lines
132 B
JavaScript
let x = [];
|
|
for (let i = 0; i < 30; ++i) {
|
|
for (let j = 0; j < 20000; ++j) {
|
|
x[0]
|
|
x.unshift(undefined);
|
|
}
|
|
}
|