how to check if an element is in an array javascript
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.includes("Mango");
how to check if an element is in an array javascript
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.includes("Mango");
Check if an array contains a number in javascript
const ratings = [1,2,3,4,5];
let result = ratings.includes(4);
console.log(result); // true
result = ratings.includes(6);
console.log(result); // false
Check if an array contains a number in javascript
const ratings = [1,2,3,4,5];
let result = ratings.includes(4);
console.log(result); // true
result = ratings.includes(6);
console.log(result); // false
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us