{"ScriptPreparationCode":null,"TestCases":[{"Name":"none","Code":"const n = 100;\r\n\r\nfunction getRandomInt(max) {\r\n return Math.floor(Math.random() * max);\r\n}\r\n\r\nconst arr = [];\r\n\r\nfor(let i = 0; i \u003C n; \u002B\u002Bi) {\r\n arr.push(getRandomInt(1000))\r\n}\r\n\r\n","IsDeferred":false},{"Name":"new","Code":"const n = 100;\r\n\r\nfunction getRandomInt(max) {\r\n return Math.floor(Math.random() * max);\r\n}\r\n\r\nconst arrPre = new Array(n);\r\n\r\nfor(let i = 0; i \u003C n; \u002B\u002Bi) {\r\n arrPre[i] = getRandomInt(1000)\r\n}\r\n\r\n","IsDeferred":false},{"Name":"length","Code":"const n = 100;\r\n\r\nfunction getRandomInt(max) {\r\n return Math.floor(Math.random() * max);\r\n}\r\nconst arrLen = []; arrLen.length = n;\r\n\r\nfor(let i = 0; i \u003C n; \u002B\u002Bi) {\r\n arrLen[i] = getRandomInt(1000)\r\n}","IsDeferred":false}]}