{"ScriptPreparationCode":"var arr = new Array(1000).fill(0);","TestCases":[{"Name":"for..of loop","Code":"let count = 0;\r\n\r\nfor (const item of arr) {\r\n count\u002B\u002B;\r\n}","IsDeferred":false},{"Name":"forEach - block","Code":"let count = 0;\r\narr.forEach(() =\u003E {\r\n count\u002B\u002B;\r\n});","IsDeferred":false},{"Name":"forEach - return","Code":"let count = 0;\r\narr.forEach(() =\u003E count\u002B\u002B);","IsDeferred":false},{"Name":"map","Code":"let count = 0;\r\narr.map(() =\u003E count\u002B\u002B);","IsDeferred":false},{"Name":"filter","Code":"let count = 0;\r\narr.filter(() =\u003E count\u002B\u002B);","IsDeferred":false}]}