var string = "foo", substring = "oo"; console.log(string.includes(substring));
var str = "Hello world, welcome to the universe."; var n = str.includes("world");
const string = "foo"; const substring = "oo"; console.log(string.includes(substring));