{"ScriptPreparationCode":"function withConst(a,b) {\r\n\tconst x = a \u002B \u002710\u0027;\r\n \treturn x \u002B b;\r\n}\r\n\r\nfunction withLet(a,b) {\r\n\tlet x = a \u002B \u002710\u0027;\r\n \treturn x \u002B b;\r\n}\r\n\r\nfunction withVar(a,b) {\r\n\tvar x = a \u002B \u002710\u0027;\r\n \treturn x \u002B b;\r\n}","TestCases":[{"Name":"const","Code":"withConst(Math.random(), Math.random())","IsDeferred":false},{"Name":"let","Code":"withLet(Math.random(), Math.random())","IsDeferred":false},{"Name":"var","Code":"withVar(Math.random(), Math.random())","IsDeferred":false}]}