{"ScriptPreparationCode":null,"TestCases":[{"Name":"sort","Code":"const a = 1\r\nconst b = 2\r\nconst result = [a, b].sort((a, b) =\u003E a - b)","IsDeferred":false},{"Name":"foreach","Code":"const arr = [1, 2] \r\nlet min = arr[0];\r\n let max = arr[0];\r\n arr.forEach((n) =\u003E {\r\n if (n \u003E max) {\r\n max = n;\r\n } else if (n \u003C min) {\r\n min = n;\r\n }\r\n });","IsDeferred":false}]}