배열 이용 년도를 받아 띠 나타내기 `` 이용

imjingu·2023년 7월 17일
0

개발공부

목록 보기
122/481
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <script>
        const rawInput = prompt('태어난 해를 입력해주세요.', '');
        const year = Number(rawInput);
        const e = year % 12;
        const array = ['원숭이', '닭', '개', '돼지', '쥐', '소', '호랑이', '토끼', '용', '뱀', '말', '양'];
        alert(`${year}년에 태어났다면 ${array[e]} 띠입니다.`);
    </script>
</body>

</html>

년도를 입력받고 12로 나누어 나온 수로 array 배열에서 해당하는 순서의 띠를 출력함

0개의 댓글