Returns true if searchString appears as a substring of the result of converting this object to a String, at one or more indexes that are greater than or equal to index; otherwise, returns false.
includes(searchString, position?)
searchString
The string to search for.
index optional
If index is undefined, 0 is assumed.
true if the given searchString occurs at least once within this string, otherwise false.
"international".includes("nation")
true
"team".includes("I")
false