function that checks to see if a word is in a string of words javascript 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");