{"ScriptPreparationCode":"var hasZero = [];\r\nvar withoutZero = [];\r\nfor (var i = 0; i \u003C 10000; i\u002B\u002B) {\r\n hasZero.push(String(Math.floor(Math.random() * 1000)));\r\n withoutZero.push(String(Math.floor(Math.random() * 1000) \u002B 1))\r\n}","TestCases":[{"Name":"Array.some","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.some(v =\u003E v === \u00220\u0022) : withoutZero.some(v =\u003E v === \u00220\u0022);","IsDeferred":false},{"Name":"Array.filter","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.filter(v =\u003E v === \u00220\u0022) : withoutZero.filter(v =\u003E v === \u00220\u0022);","IsDeferred":false},{"Name":"Array.indexOf","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.indexOf(\u00220\u0022) \u003E -1 : withoutZero.indexOf(\u00220\u0022) \u003E -1;","IsDeferred":false},{"Name":"Array.includes","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.includes(\u00220\u0022) : withoutZero.includes(\u00220\u0022);","IsDeferred":false}]}