{"ScriptPreparationCode":"const keywords = [\u0027some\u0027, \u0027strings\u0027];\r\nconst regex = new RegExp(keywords.join(\u0022|\u0022), \u0022i\u0022);\r\nconst string = \u0022Some guitars don\u0027t have a lot of strings on them.\u0022;","TestCases":[{"Name":"Includes","Code":"const keywords = [\u0027some\u0027, \u0027strings\u0027];\r\nconst string = \u0022Some guitars don\u0027t have a lot of strings on them.\u0022;\r\nkeywords.every(str =\u003E string.toLowerCase().includes(str.toLowerCase()));","IsDeferred":false},{"Name":"Regex.test","Code":"const keywords = [\u0027some\u0027, \u0027strings\u0027];\r\nconst regex = new RegExp(keywords.join(\u0022|\u0022), \u0022i\u0022);\r\nconst string = \u0022Some guitars don\u0027t have a lot of strings on them.\u0022;\r\nregex.test(string);","IsDeferred":false}]}