{"ScriptPreparationCode":null,"TestCases":[{"Name":"positive f\u00F8rst (9/10 sjanse for else)","Code":"const data = [1,2,3,4,5,6,7,8,9,10];\r\nconst id = 2;\r\n\r\nfor (let d of data) {\r\n\tif (d === id) {\r\n \t// something \r\n }\r\n else {\r\n // something else\r\n }\r\n}","IsDeferred":false},{"Name":"negative f\u00F8rst (1/10 sjanse for else)","Code":"const data = [1,2,3,4,5,6,7,8,9,10];\r\nconst id = 2;\r\n\r\nfor (let d of data) {\r\n\tif (d !== id) {\r\n \t// something \r\n }\r\n else {\r\n // something else\r\n }\r\n}","IsDeferred":false}]}