{"ScriptPreparationCode":"const searchWordsArray = [\u0022Hello\u0022, \u0022array\u0022, \u0022some\u0022, \u0022name\u0022, \u0022you\u0022, \u0022benchmark\u0022];\r\nconst searchWordsRegex = /Hello|array|some|name|you|benchmark/;\r\nconst sentence = \u0022This sentence has one of the searched words at the end of the sentence, to get a more meaningful result in this benchmark.\u0022","TestCases":[{"Name":"Regex.test","Code":"searchWordsRegex.test(sentence);","IsDeferred":false},{"Name":"Array.some","Code":"searchWordsArray.some((word) =\u003E sentence.includes(word));","IsDeferred":false},{"Name":"String.match","Code":"sentence.match(searchWordsRegex);","IsDeferred":false}]}