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