{"ScriptPreparationCode":null,"TestCases":[{"Name":"Classic For Loop","Code":"for (var i = 1; i \u003C map.length; i\u002B\u002B) {\r\n if (map[i].width \u003E widest.width) widest = map[i];\r\n}","IsDeferred":false},{"Name":"For Each","Code":"map.forEach(e =\u003E {\r\n if (e.width \u003E widest.width) widest = e; \r\n});","IsDeferred":false},{"Name":"Minified For Loop ES6","Code":"for(let t=1;t\u003Cmap.length;t\u002B\u002B)map[t].width\u003Ewidest.width\u0026\u0026(widest=map[t]);","IsDeferred":false},{"Name":"Minified For Each ES6","Code":"map.forEach(d=\u003E{d.width\u003Ewidest.width\u0026\u0026(widest=d)});","IsDeferred":false}]}