{"ScriptPreparationCode":"var withoutZero = [];\r\nfor (var i = 0; i \u003C 10000; i\u002B\u002B) {\r\n withoutZero.push({id: Math.floor(Math.random() * 1000)})\r\n}","TestCases":[{"Name":"Array.some","Code":"var tempResult = withoutZero.some(v =\u003E v.id === 0);","IsDeferred":false},{"Name":"Array.filter","Code":"var tempResult = !!withoutZero.filter(v =\u003E v.id === 0);","IsDeferred":false},{"Name":"Array.map\u002BindexOf","Code":"var withoutZeroIds = withoutZero.map(x =\u003E x.id);\r\nvar tempResult = withoutZeroIds.indexOf(0) \u003E -1;","IsDeferred":false},{"Name":"Array.map\u002Bincludes","Code":"var withoutZeroIds = withoutZero.map(x =\u003E x.id);\r\nvar tempResult = withoutZeroIds.includes(0);","IsDeferred":false},{"Name":"Array.find","Code":"var tempResult = withoutZero.find(v =\u003E v.id === 0);","IsDeferred":false}]}