TypeError: First argument to String.prototype.includes must not be a regular expression code example
Example: .includes( string
var str = "Hello world, welcome to the universe.";
var n = str.includes("world");
var str = "Hello world, welcome to the universe.";
var n = str.includes("world");