{"ScriptPreparationCode":"var arr = [12342, 342, 3423, 432, 432, 423, 43, 3, 1, 321, 323, 1, 31, 31, 31, 231, 31, 31];","TestCases":[{"Name":"for..of","Code":"const narr = [];\r\nfor(const item of arr){\r\n narr.push(item)\r\n}","IsDeferred":false},{"Name":"for..in","Code":"const narr = [];\r\nfor(const item in arr){\r\n narr.push(arr[item])\r\n}","IsDeferred":false},{"Name":"for","Code":"const narr = [];\r\nfor(let i=0; i\u003Carr.length; i\u002B\u002B){\r\n narr.push(arr[i])\r\n}","IsDeferred":false},{"Name":"foreach","Code":"const narr = [];\r\narr.forEach( e =\u003E narr.push(e));","IsDeferred":false}]}