{"ScriptPreparationCode":"var str = \u00271234567\u0027;\r\nvar arr = [];\r\nfor (i = 0; i \u003C 1000; i\u002B\u002B) {\r\n arr.push([...Array(4 \u002B Math.floor(Math.random() * 8))].map(i =\u003E (~~(Math.random() * 36)).toString(36)).join(\u0027\u0027))\r\n}","TestCases":[{"Name":"IndexOf","Code":"arr.indexOf(str)","IsDeferred":false},{"Name":"Includes","Code":"arr.includes(str)","IsDeferred":false},{"Name":"ForEach with === with length check","Code":"arr.forEach(s =\u003E {\r\n if (s.length === str.length \u0026\u0026 s === str) console.log(\u0027Finded!\u0027);\r\n})","IsDeferred":false},{"Name":"ForEach with ===","Code":"arr.forEach(s =\u003E {\r\n if (s === str) console.log(\u0027Finded!\u0027);\r\n})","IsDeferred":false},{"Name":"ForEach with ==","Code":"arr.forEach(s =\u003E {\r\n if (s == str) console.log(\u0027Finded!\u0027);\r\n})","IsDeferred":false}]}