{"ScriptPreparationCode":"\r\nvar names = [\u0027George\u0027,\u0027Ringo\u0027,\u0027Paul\u0027,\u0027John\u0027,\u0027George\u0027,\u0027Ringo\u0027,\u0027Paul\u0027,\u0027John\u0027,\u0027George\u0027,\u0027Ringo\u0027,\u0027Paul\u0027,\u0027John\u0027,\u0027George\u0027,\u0027Ringo\u0027,\u0027Paul\u0027,\u0027John\u0027,\u0027George\u0027,\u0027Ringo\u0027,\u0027Paul\u0027,\u0027John\u0027,\u0027George\u0027,\u0027Ringo\u0027,\u0027Paul\u0027,\u0027John\u0027];\r\nvar total = 0;","TestCases":[{"Name":"best practice","Code":"for(var i=0,j=names.length;i\u003Cj;i\u002B\u002B){\r\n total\u002B\u002B\r\n}","IsDeferred":false},{"Name":"normal","Code":"for(var i=0; i\u003Cnames.length;i\u002B\u002B){\r\n total\u002B\u002B;\r\n}","IsDeferred":false},{"Name":"best practice with plus plus reversed","Code":"for(var i=0,j=names.length;i\u003Cj;i\u002B\u002B){\r\n total\u002B\u002B\r\n}","IsDeferred":false},{"Name":"normal with plus plus reversed","Code":"for(var i=0; i\u003Cnames.length;\u002B\u002Bi){\r\n total\u002B\u002B;\r\n}","IsDeferred":false},{"Name":"backwards","Code":"for(var i=names.length-1;i\u003E=0;i--){\r\n total\u002B\u002B\r\n}","IsDeferred":false},{"Name":"backwards minus minus reversed","Code":"for(var i=names.length-1;i\u003E=0;--i){\r\n total\u002B\u002B\r\n}","IsDeferred":false}]}