{"ScriptPreparationCode":"var items = [1,2,3,4,5,6,7,8,9,10];\r\nvar total = 0;","TestCases":[{"Name":"Array.forEach","Code":"items.forEach(item =\u003E total = total \u002B item);","IsDeferred":false},{"Name":"for loop","Code":"for(var i = 0 ; i \u003C items.length ; i\u002B\u002B) {\r\n total = total \u002B items[i];\r\n}","IsDeferred":false}]}