{"ScriptPreparationCode":"const largerArray = Array.from({\r\n length: 10000000\r\n}, (_, index) =\u003E \u0060Element${index}\u0060);\r\n\r\n// Add the \u0027bc\u0027 element at the end of the array\r\nlargerArray.push(\u0027bc\u0027);","TestCases":[{"Name":"Find","Code":"const largerArray = [];\r\nfor (let i = 0; i \u003C 1000000; i\u002B\u002B) {\r\n largerArray.push(\u0027Element\u0027 \u002B i);\r\n}\r\n// Add the \u0027bc\u0027 element at the end of the array\r\nlargerArray.push(\u0027bc\u0027);\r\n\r\nvar b = !!largerArray.find(item =\u003E item === \u0027bc\u0027);\t\t\t\t\t","IsDeferred":false},{"Name":"Some","Code":"const largerArray = [];\r\nfor (let i = 0; i \u003C 1000000; i\u002B\u002B) {\r\n largerArray.push(\u0027Element\u0027 \u002B i);\r\n}\r\n// Add the \u0027bc\u0027 element at the end of the array\r\nlargerArray.push(\u0027bc\u0027);\r\n\r\nvar b = largerArray.some(item =\u003E item === \u0027bc\u0027);","IsDeferred":false}]}