JavaScript: Find if an array contains a specific element
JavaScript Array: Exercise-32 with Solution
Find Element in Array
Write a JavaScript function to find an array containing a specific element.
Test data:
arr = [2, 5, 9, 6];
console.log(contains(arr, 5));
[True]
Visual Presentation:

Sample Solution:
JavaScript Code:
Output:
true
Flowchart:

ES6 Version:
Live Demo:
For more Practice: Solve these Related Problems:
- Write a JavaScript function that checks if an array contains a specific element using includes() and returns a boolean.
- Write a JavaScript function that returns the index of a given element if it exists, or -1 if it does not.
- Write a JavaScript function that iterates through an array to find and return true if a particular element is found.
- Write a JavaScript function that searches an array of objects for an object with a specific property value.
Contribute your code and comments through Disqus.
Previous: Write a JavaScript function to remove a specific element from an array.
Next: Write a JavaScript script to empty an array keeping the original.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics