xxxxxxxxxx
/**
* The includes() method returns true if a string contains a specified string.
* Otherwise it returns false.
* The includes() method is case sensitive.
**/
string.includes(searchvalue, start)
//Example
let text = "Hello world, welcome to the universe.";
let result = text.includes("world");