{"ScriptPreparationCode":"var array = new Array(100000).fill(0).map(_x =\u003E 0);\r\nvar typedArray = new Uint32Array(100000).fill(0);","TestCases":[{"Name":"Array write","Code":"for (let i=0; i\u003Carray.length; i\u002B\u002B) {\r\n array[i] = array[i] \u002B 1;\r\n}","IsDeferred":false},{"Name":"TypedArray write","Code":"for (let i=0; i\u003CtypedArray.length; i\u002B\u002B) {\r\n typedArray[i] = typedArray[i] \u002B 1;\r\n}","IsDeferred":false}]}