const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.includes("Mango");
Start the search at position 3:
const fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.includes("Banana", 3);
The includes()
method returns true
if an array contains a specified value.
The includes()
method returns false
if the value is not found.
The includes()
method is case sensitive.
array.includes(element, start)
Parameters Parameter Description element Required.true
if the value is found, otherwise false
. Browser Support
includes()
is a JavaScript 2016.
ES 2016 is supported in all modern browsers:
Chrome Edge Firefox Safari Opera Yes Yes Yes Yes YesTrack your progress - it's free!
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4