0
Q:

javascript includes method


var str = "Hello world, welcome to the universe.";

var n = str.includes("world");
 
12
var string = "foo",
    substring = "oo";

console.log(string.includes(substring));
21
const string = "foo";
const substring = "oo";

console.log(string.includes(substring));
9
var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
//use indexOf (it returns position of substring or -1 if not found)
17
var colors = ['yellow', 'red', 'pink'];
var string = 'yellow and red are pretty cool';

// outputs false
console.log(colors.include('blue');
// outputs true
console.log(string.includes('yellow');
2
var str = "We got a poop cleanup on isle 4.";
if(str.indexOf("poop") !== -1){
	alert("Not again");
}
6
var string = "foo",
var substring = "oo";

console.log(string.includes(substring));
0
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) // ['hi' 'bye' 'okay]
2

var str = "Hello world, welcome to the universe.";

var n = str.includes("world", 12);
 
0
arr.includes(searchElement[, fromIndex = 0])
0

New to Communities?

Join the community