{"ScriptPreparationCode":"var hasZero = [];\r\nvar withoutZero = [];\r\nfor (var i = 0; i \u003C 10000; i\u002B\u002B) {\r\n hasZero.push(Math.floor(Math.random() * 1000));\r\n withoutZero.push(Math.floor(Math.random() * 1000) \u002B 1)\r\n}","TestCases":[{"Name":"Array.some","Code":"var a = hasZero.some(v =\u003E v === 0);\r\nvar b = withoutZero.some(v =\u003E v === 0);","IsDeferred":false},{"Name":"Array.includes","Code":"var a = hasZero.includes(0);\r\nvar b = withoutZero.includes(0);","IsDeferred":false}]}