js how to know if a sentence is not included in a string code example
Example: check if word is in string javascript
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");