Quiero determinar si la cadena tiene al menos 2 mismos elementos de la 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
No estoy seguro de qué va a ser mejor: ¿una expresión regular o una función? Cualquiera estaría bien.
Intenté esto:
const array = ["!", "?"];
const string = "test!";
array.every(ar => !string.includes(ar));
Pero solo detecta si hay al menos 1 elementos de la matriz, no 2.