{"ScriptPreparationCode":"var max = 999, newMax = 0,\r\n count = 0;","TestCases":[{"Name":"test1 Uses IF","Code":"\r\nfor(let i = 0; i \u003C 1000; i\u002B\u002B){\r\n if (i \u003E max ){\r\n newMax = i;\r\n }\r\n}\r\nreturn newMax;","IsDeferred":false},{"Name":"test2 Uses Math.max","Code":"for(let i = 0; i \u003C 1000; i\u002B\u002B){\r\n newMax = Math.max(max, i);\r\n}\r\nreturn newMax;","IsDeferred":false}]}