// lastIndexOf only requires a single value
// and returns the index of last instance of value found in array
const cities = [
"Orlando",
"Denver",
"Edinburgh",
"Chennai",
"Denver",
"Eskisehir",
"Yokohama",
"Denver",
"Chennai",
];
console.log(cities.lastIndexOf("Denver"));
// Expected output is 7
var str = "Please locate where 'locate' occurs!";
var ind1 = str.indexOf("locate"); // return location of first value which founded
var ind2 = str.lastIndexOf("locate"); // return location of last value which founded
var ind3 = str.indexOf("locate", 15); // start search from location 15 and then take first value which founded
var ind4 = str.search("locate");
//The search() method cannot take a second start position argument.
//The indexOf() method cannot take powerful search values (regular expressions).
document.write("<br>" + "Length of string:", len);
document.write("<br>" + "indexOf:", ind1);
document.write("<br>" + "index of last:", ind2);
document.write("<br>" + "indexOf with start point:", ind3);
document.write("<br>" + "search:", ind4);
'canal'.lastIndexOf('a'); // retorna 3
'canal'.lastIndexOf('a', 2); // retorna 1
'canal'.lastIndexOf('a', 0); // retorna -1
'canal'.lastIndexOf('x'); // retorna -1
'canal'.lastIndexOf('c', -5); // retorna 0
'canal'.lastIndexOf('c', 0); // retorna 0
'canal'.lastIndexOf(''); // retorna 5
'canal'.lastIndexOf('', 2); // retorna 2
const fruits = ["Apple", "Orange", "Apple", "Mango"];
let position = fruits.lastIndexOf("Apple") + 1;