Array -1 JavaScript
//The index of any item that does not exist in an array is -1
//example:
a = ["help","I'm","a","sentient","array"];
a.indexOf("Icecream");//this returns -1
The Amateur