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