{"ScriptPreparationCode":"var list = Array.from({ length: 10000 }).map((value, i) =\u003E i);","TestCases":[{"Name":"Foreach(lodash)","Code":"_.each(list, function(value,key) {})","IsDeferred":false},{"Name":"ForOf(native)","Code":"for (const element of list) {\r\n \r\n}","IsDeferred":false},{"Name":"ForIn(native)","Code":"for (const key in list) {\r\n const element = list[key];\r\n}","IsDeferred":false},{"Name":"For(native)","Code":"for (let index = 0; index \u003C list.length; index\u002B\u002B) {\r\n const element = list[index];\r\n}","IsDeferred":false}]}