str conteints js
var string = 'Hello World';
if (string.includes('World')) {
console.log('Yeah!');
}
// The includes() method determines whether a string contains the
// characters of a specified string. This method returns true if the
// string contains the characters, and false if not. Note: The
// includes() method is case sensitive.