/*
 * 주의하세요!
 * 문자열에서 인덱스는 0부터 시작합니다.
 * 첫 번째 문자열의 인덱스는 0이고, 두 번째 문자열의 인덱스는 1입니다.
*/

const filePath = "image.jpg";

console.log(filePath.lastIndexOf(".jpg")); // 5

// 인수로 전달된 문자열를 찾을 수 없을 때
console.log(filePath.lastIndexOf(".png")); // -1

/////////////////////////////////

const text = "우리 강산 우리 바다";

// 마지막으로 나타나는 인덱스를 반환
let result = text.lastIndexOf("우리");
console.log(result); // 6
str.lastIndexOf(searchValue[, position])
let text = "hello world";
let result = text.lastIndexOf("o");
console.log(result); // 7
let text = "hello world";
let result = text.lastIndexOf("o", 5);
console.log(result); // 4
let text = "hello world";
let result = text.lastIndexOf("z");
console.log(result); // -1
let text = "banana";
let result = text.lastIndexOf("a");
console.log(result); // 5
let text = "apple";
let result = text.lastIndexOf("");
console.log(result); // 5
let text = "apple";
let result = text.lastIndexOf("p", -1);
console.log(result); // -1
const redString = "red";
const searchRed = redString.lastIndexOf("R");

// 대문자 "R"과 소문자 "r"을 구분합니다.
console.log(searchRed); // 출력: -1;