const strEn = "Hello, world!";

console.log(strEn.startsWith("Hello")); // true
console.log(strEn.startsWith("hello")); // false => 대소문자를 구분
console.log(strEn.startsWith("world")); // false

// 검색을 시작할 0부터 시작하는 인덱싱
console.log(strEn.startsWith("world", 7)); // true => 8 번째 시작하는 부분

const strKo = "환영합니다!";
console.log(strKo.startsWith("환")); // true
console.log(strKo.startsWith("환영합니다!")); // true
console.log(strKo.startsWith("환영합니다xxxx")); // false
startsWith(searchString)
startsWith(searchString, position)
const str_1 = "Hello, world!";
console.log(str_1.startsWith("")); // true

const str_2 = "";
console.log(str_2.startsWith("")); // true
<!DOCTYPE html>
<html lang="en-US">
    <head>
        <meta charset="UTF-8">
        <title>언어 감지</title>
        <script>
            document.addEventListener("DOMContentLoaded", function () {
                const lang = document.documentElement.lang; // HTML의 lang 속성값 가져오기

                if (lang.startsWith("en")) {
                    console.log("언어가 영어로 설정되었습니다.");
                } else if (lang.startsWith("ko")) {
                    console.log("언어가 한국어로 설정되었습니다.");
                } else if (lang.startsWith("fr")) {
                    console.log("언어가 프랑스어로 설정되었습니다.");
                } else {
                    console.log("지원되지 않는 언어입니다.");
                }
            });
        </script>
    </head>
    <body>
        <h1>Hello, World!</h1>
    </body>
</html>