Eu quero determinar se a string tem pelo menos 2 mesmos elementos da matriz
const array = ["!", "?"];
const string1 = "!hello"; // should return false
const string2 = "!hello?"; // should return false
const string3 = "!hello!"; // should return true
const string4 = "hello ??"; // should return true
const string5 = "hello ?test? foo"; // should return true
const string6 = "hello ?test ?? foo"; // should return true
Não tenho certeza do que será melhor: uma expressão regular ou uma função? Qualquer um seria bom.
Eu tentei isso:
const array = ["!", "?"];
const string = "test!";
array.every(ar => !string.includes(ar));
Mas ele detecta apenas se houver pelo menos 1 elementos da matriz, não 2.