{"ScriptPreparationCode":"var array = new Array(100);\r\nlet result = []","TestCases":[{"Name":"for","Code":"result = []\r\nconst aLen = array.length\r\nfor (var i = 0; i \u003C aLen; i\u002B\u002B) {\r\n result.push(array[i]);\r\n}","IsDeferred":false},{"Name":"foreach","Code":"result = []\r\narray.forEach(function(i) {\r\n result.push(array[i]);\r\n});","IsDeferred":false},{"Name":"some","Code":"result = []\r\narray.some(function(i) {\r\n result.push(array[i]);\r\n});","IsDeferred":false},{"Name":"for..of","Code":"result = []\r\nfor (const i of array) {\r\n result.push(array[i]);\r\n}","IsDeferred":false}]}