Indira
0
Q:

js includes

const pets = ['cat', 'dog', 'bat'];

console.log(pets.includes('cat'));
// output: true
20
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 = "Hello world, welcome to the universe.";

var n = str.includes("world");
 
12
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

New to Communities?

Join the community