JS 입력 연도

368 단어
(year - 1900)% 12 는 마이너스 + 12 를 얻 을 수 있 습 니 다.
function main(year) {
    const char = ['rat', 'ox', 'tiger', 'rabbit', 'dragon', 'snake', 'horse', 'sheep', 'monkey', 'rooster', 'dog', 'pig'];
    console.log(char[((year - 1900) % 12 + 12) % 12]);
}

좋은 웹페이지 즐겨찾기