{"ScriptPreparationCode":"function getRandomInt(max) {\r\n return Math.floor(Math.random() * max);\r\n}\r\n\r\nvar a = [...new Array(10000)].map(_ =\u003E getRandomInt(1000000));\r\nvar ta = (new Float32Array(10000)).map(_ =\u003E getRandomInt(1000000));\r\n","TestCases":[{"Name":"Regular array","Code":"for (let i = 0; i \u003C 10000; \u002B\u002Bi) {\r\n a[i] = a[i] \u002B 1;\r\n}","IsDeferred":false},{"Name":"Float32Array","Code":"for (let i = 0; i \u003C 10000; \u002B\u002Bi) {\r\n ta.set(ta[i] \u002B 1,i);\r\n}","IsDeferred":false}]}