// Array to check
let array = [1, 2, 3, 4, 5];
// Element to check for in the array
let element = 3;
// Check if the array contains the specified element
let containsElement = array.includes(element);
// Display the result
console.log('Array Contains Element:', containsElement);JavaScript Check if Array Contains Element
javascript
Related Posts
More content you might like
Code
javascript
Sorting an Array in JavaScript
No preview available for this content.
Jan 26, 2024
Read More Code
javascript
JavaScript Sum of Array Elements
No preview available for this content.
Jan 26, 2024
Read MoreDiscussion 0
Please sign in to join the discussion.
No comments yet. Be the first to share your thoughts!