{"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":"Includes","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.includes(v =\u003E v === 0) : withoutZero.includes(v =\u003E v === 0);","IsDeferred":false},{"Name":"IndexOf","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.indexOf(0) \u003E -1 : withoutZero.indexOf(0) \u003E -1;","IsDeferred":false},{"Name":"Filter","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.filter(v =\u003E v === 0).length \u003E 0 : withoutZero.filter(v =\u003E v === 0).length \u003E 0;","IsDeferred":false},{"Name":"Find","Code":"var tempResult = !!Math.round(Math.random()) ? typeof hasZero.find(v =\u003E v === 0) !== \u0027undefined\u0027 : typeof withoutZero.find(v =\u003E v === 0) !== \u0027undefined\u0027;","IsDeferred":false},{"Name":"FindIndex","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.findIndex(v =\u003E v === 0) \u003E -1 : withoutZero.findIndex(v =\u003E v === 0) \u003E -1;","IsDeferred":false},{"Name":"Some","Code":"var tempResult = !!Math.round(Math.random()) ? hasZero.some(v =\u003E v === 0) : withoutZero.some(v =\u003E v === 0);","IsDeferred":false}]}