JavaScript Array includes() Method

You are Here:

JavaScript Array includes() Method

The includes() method returns a Boolean value indicates whether an array includes a specified value among its entries.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>Is 8 included in the array?</p> <script> var myNumber = [1, 2, 3, 4, 5, 6, 7]; document.write(myNumber.includes(8)); </script> </body> </html>

Syntax

Array.includes(value)

Parameter Values

ValueTypeExplanation
valueRequiredSpecifies the value to be searched in an array.

Return Values

ValueExplanation
trueIf an array contains the value.
falseIf an array does not contain the value.

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author