{"ScriptPreparationCode":"var array = [1,2,3,4,5,6,7,8,9,10];","TestCases":[{"Name":"for ... in","Code":"for (let index in array) {\r\n if (array.hasOwnProperty(index)) {\r\n console.log(array[index]);\r\n }\r\n}","IsDeferred":false},{"Name":"for ... of","Code":"for (let element of array) {\r\n console.log(element);\r\n}","IsDeferred":false}]}