how to check a string is contained in another string js code example
Example: How to check whether a string contains a substring in 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");