const isLeapYear = year => (((year % 4 === 0) && (year % 100 !== 0)) || (year % 400 === 0)); // Or // Get the number of days in February const isLeapYear = year => new Date(year, 1, 29).getDate() === 29;
등록된 댓글이 없습니다.
코리아뉴스 2001 - , All right reserved. 더보기