how to find out if a given word exists in a string javascript code example
Example: How find a specific character in js
var word = "This is how you locate a word in a string";
var n = word.includes("word");
var word = "This is how you locate a word in a string";
var n = word.includes("word");