check if an element is contained in an array code example

Example 1: check if array does not contain value javascript

var fruits = ["Banana", "Orange", "Apple", "Mango"];

var n = fruits.includes("Mango"); // true

var n = fruits.includes("Django"); // false

Example 2: how to Check if an array contains a string

// To check if an array contains a string 

const colors = ['red', 'green', 'blue'];
const result = colors.includes('red');

console.log(result); // true

// Or 

const colors = ['Red', 'GREEN', 'Blue'];
const result = colors.map(e => e.toLocaleLowerCase())
                     .includes('green');                          

console.log(result); // true

Tags: