write a function that tests if a string contains words from a predefined list javascript 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");