In JavaScript, you can check if a value exists in an array using the indexOf()
method or the includes()
method, which are both available on the Array prototype.
The indexOf()
method returns the first index at which a given element can be found in the array, or -1 if it is not present. For example:
var fruits = ["apple", "banana", "cherry"];
var isExist = fruits.indexOf("banana") !== -1;
console.log(isExist); // true
The includes()
method returns a Boolean indicating whether an array includes a certain value among its entries, returning true or false. For example:
var fruits = ["apple", "banana", "cherry"];
var isExist = fruits.includes("banana");
console.log(isExist); // true
You can also use the find()
method to check if a value exists in an array. The find()
method returns the value of the first element in the array that satisfies the provided testing function. If not found, it returns undefined
.
var fruits = ["apple", "banana", "cherry"];
var isExist = fruits.find(item => item === "banana") !== undefined;
console.log(isExist); // true
You can use any of the above methods to check if a value exists in an array in JavaScript.
Also Read:
- What Is AJAX?
- List of JavaScript Functions
- How To Copy An Array In JavaScript
- How To Get All Unique Values In A JavaScript Array
- Convert int to string in JavaScript
- How To Check If An Object Is An Array In JavaScript
- How To Randomize An Array In JavaScript
- How To Replace All Occurrences Of A Character In A String?
- How To Split A String In JavaScript?
- How To Replace Multiple Spaces With Single Space In JavaScript
- How To Replace All Character In A String In JavaScript
- How To Check If A String Contains A Substring In JavaScript
- How To Loop Through An Array In JavaScript
- How To Check If A Value Exists In An Array In JavaScript
- How To Remove Duplicates From An Array Using JavaScript
- How To Create Multiline Strings In JavaScript
- How To Remove A Specific Element From An Array In JavaScript
- How To Define A Function In JavaScript?
- How To Concatenate Two String Arrays In JavaScript
- How To Get Image Size (Height & Width) Using JavaScript
- How To Change Image Size In JavaScript
- How To Increase and Decrease Image Size Using JavaScript
- How To Trigger Or Pause A CSS Animation In JavaScript
- How To Check If A Variable Is Undefined Or Null In JavaScript
- How To Check If A Variable Exists Or Is Defined In JavaScript
- How To Change The Background Color With JavaScript
- How To Encode A URL With JavaScript
- How To Decode A URL In JavaScript