{"ScriptPreparationCode":null,"TestCases":[{"Name":"For","Code":"itemList = [];\r\nfor(let index= 0; index \u003C1000; index\u002B\u002B){\r\n\titemList[index] = index\r\n};\r\n\r\nfor(let index= 0; index\u003CitemList.legth; index\u002B\u002B){\r\n \tconst count = itemList[index];\r\n};","IsDeferred":false},{"Name":"For of","Code":"itemList = [];\r\nfor(let index= 0; index \u003C1000; index\u002B\u002B){\r\n\titemList[index] = index\r\n};\r\n\r\nfor(item of itemList){\r\n \tconst count = item;\r\n};","IsDeferred":false},{"Name":"Find","Code":"itemList = [];\r\nfor(let index= 0; index \u003C1000; index\u002B\u002B){\r\n\titemList[index] = index\r\n};\r\n\r\nitemList.find(element =\u003E element === 1000)","IsDeferred":false}]}