arr[-1] in js code example
Example: 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 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