js search substring in string code example

Example 1: check for substring javascript

const string = "javascript";
const substring = "script";

console.log(string.includes(substring));  //true

Example 2: check if word is in string javascript

var str = "Hello world, welcome to the universe.";
var n = str.includes("world");

Example 3: javascript string contains function

s = "Hello world";
console.log(s.includes("world"));

Example 4: js string contais

const string = "foo";
const substring = "oo";

console.log(string.includes(substring));

Example 5: search inside a string javascript

var string = "Hello world!";
var n = string.search("w"); //now n equals 6

Example 6: javascript string contains

var string = "foo",
var substring = "oo";

console.log(string.includes(substring));