{"ScriptPreparationCode":null,"TestCases":[{"Name":"Using Find","Code":"const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\r\nconst result = array.find((item) =\u003E {\r\n\tconsole.log(\u0027Passed here\u0027);\r\n return item === 3;\r\n});\r\nconsole.log(result);","IsDeferred":false},{"Name":"Using some","Code":"const array = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];\r\nconst result = array.some((item) =\u003E {\r\n\tconsole.log(\u0027Passed here\u0027);\r\n return item === 3;\r\n});","IsDeferred":false}]}