blob: b256fe51b5f892f4e91c5343bc8c20a39be41d34 [file] [log] [blame] [edit]
for (let i = 0; i < 20; i++) {
let array = new Array(i);
for (let j = 0; j < i; j++)
array[j] = 1;
for (let j = 0; j < 1e4; ++j)
array.map((x) => x);
}