{"ScriptPreparationCode":null,"TestCases":[{"Name":"Array write","Code":"var array = new Array(100000).fill(0);\r\n\r\nfor (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":"var typedArray = new Uint8Array(100000).fill(0);\r\n\r\nfor (let i=0; i\u003CtypedArray.length; i\u002B\u002B) {\r\n typedArray[i] = typedArray[i] \u002B 1;\r\n}","IsDeferred":false}]}