{"ScriptPreparationCode":null,"TestCases":[{"Name":"every","Code":"const a = [1, 2, 3, 4, 5];\r\nconst b = [1, 2, 4, 5, 3, 5];\r\na.every(x =\u003E b.some(y =\u003E x === y));","IsDeferred":false},{"Name":"for loop","Code":"const a = [1, 2, 3, 4, 5];\r\nconst b = [1, 2, 4, 5, 3, 5];\r\nfor (let i = 0, l = a.length; i \u003C l; i\u002B\u002B) {\r\n \tif (!b.some(y =\u003E a[i] === y)) {\r\n \tbreak; \r\n }\r\n}","IsDeferred":false}]}