The array or array like object of elements to be searched.
The value to search for
Optional
fromIndex: numberThe optional Zero-based index at which to start searching, converted to an integer.
A boolean value which is true if the value searchElement is found within the array (or the part of the array indicated by the index fromIndex, if specified).
The arrIncludes() method determines whether an array includes a certain value among its entries, returning true or false as appropriate.
Since
0.8.0
Example