{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array.prototype.concat","Code":"const length = 100000;\r\nconst a1 = new Array(length).fill(1)\r\nconst a2 = new Array(length).fill(2)\r\nconst a3 = a1.concat(a2)","IsDeferred":false},{"Name":"Array.prototype.splice","Code":"const length = 100000;\r\nconst a1 = new Array(length).fill(1)\r\nconst a2 = new Array(length).fill(2)\r\nconst a4 = new Array(length * 2)\r\na4.splice(0, a1.length, ...a1)\r\na4.splice(a1.length, a2.length, ...a2)","IsDeferred":false}]}