{"ScriptPreparationCode":null,"TestCases":[{"Name":"if - no match","Code":"let a = \u0027te2st\u0027;\r\nfunction test() {\r\n if(a === \u0027crest\u0027) {\r\n return \u0027no\u0027; \r\n }\r\n else if(a === \u0027chest\u0027) {\r\n return \u0027bo\u0027; \r\n }\r\n else if(a === \u0027test\u0027) {\r\n return \u0027yoo\u0027; \r\n }\r\n return null;\r\n}\r\ntest();","IsDeferred":false},{"Name":"if - third match","Code":"let a = \u0027test\u0027;\r\nfunction test() {\r\n if(a === \u0027crest\u0027) {\r\n return \u0027no\u0027; \r\n }\r\n else if(a === \u0027chest\u0027) {\r\n return \u0027bo\u0027; \r\n }\r\n else if(a === \u0027test\u0027) {\r\n return \u0027yoo\u0027; \r\n }\r\n return null;\r\n}\r\ntest();","IsDeferred":false},{"Name":"if - second match","Code":"let a = \u0027chest\u0027;\r\nfunction test() {\r\n if(a === \u0027crest\u0027) {\r\n return \u0027no\u0027; \r\n }\r\n else if(a === \u0027chest\u0027) {\r\n return \u0027bo\u0027; \r\n }\r\n else if(a === \u0027test\u0027) {\r\n return \u0027yoo\u0027; \r\n }\r\n return null;\r\n}\r\ntest();","IsDeferred":false},{"Name":"if - first match","Code":"let a = \u0027crest\u0027;\r\nfunction test() {\r\n if(a === \u0027crest\u0027) {\r\n return \u0027no\u0027; \r\n }\r\n else if(a === \u0027chest\u0027) {\r\n return \u0027bo\u0027; \r\n }\r\n else if(a === \u0027test\u0027) {\r\n return \u0027yoo\u0027; \r\n }\r\n return null;\r\n}\r\ntest();","IsDeferred":false},{"Name":"dict","Code":"let a = \u0027crest\u0027;\r\nfunction test() {\r\n let dict = {\r\n \u0027crest\u0027 : \u0027no\u0027,\r\n \u0027chest\u0027 : \u0027bo\u0027,\r\n \u0027test\u0027 : \u0027yoo\u0027\r\n }\r\n return dict[a];\r\n}\r\n","IsDeferred":false}]}