find string within string javascript code example
Example 1: js check if string contains character
"FooBar".includes("oo");
"FooBar".includes("foo");
"FooBar".includes("oo", 2);
Example 2: indexof javascript
var colors=["red","green","blue"];
var pos=colors.indexOf("blue");
var str = "We got a poop cleanup on isle 4.";
var strPos = str.indexOf("poop");
<Checkbox
checked={value.indexOf(option) > -1}
value={option}
/>
Example 3: .includes javascript
let storyWords = ['extremely literally actually hi bye okay']
let unnecessaryWords = ['extremely', 'literally', 'actually' ];
let betterWords = storyWords.filter(function(word) {
return !unnecessaryWords.includes(word);
});
console.log(betterWords)
Example 4: js check if string contains character
if (your_string.indexOf('hello') > -1)
{
alert("hello found inside your_string");
}