Comment vérifier les caractères dans une chaîne javascript
let example = "Example String!";
let ourSubstring = "Example";
if (example.includes(ourSubstring)) {
console.log("The word Example is in the string.");
} else {
console.log("The word Example is not in the string.");
}
Attractive Alpaca