{"ScriptPreparationCode":"var testArray = new Uint32Array(1024);\r\ntestArray.fill(2,0,1024);","TestCases":[{"Name":"Using Fill API","Code":"var testArray = new Uint32Array(1024);\r\ntestArray.fill(2,0,1024);","IsDeferred":false},{"Name":"Using iteration","Code":"var testArray = new Uint32Array(1024);\r\nfor(var i= 0; i \u003C testArray.length; i\u002B\u002B) {\r\n testArray[i] = 2;\r\n}","IsDeferred":false}]}