Como verificar se uma string contém uma determinada letra em JS
// use the variable.includes()
const myString = "hello world!"
if(myString.includes("hello")){
// do something
}else{
//also do something
}
Code Sir