JS判断年份是否为闰年

//闰年能被4整除且不能被100整除,或能被400整除。

1 var oDate = new Date();
2 var year = oDate.getFullYear();
3 if(year % 4 == 0 && year % 100 != 0 || year % 400 == 0){
4     console.log(“闰年”);
5 }else{
6     console.log(“平年”);
7 }

 

参考自:https://www.cnblogs.com/iverson666/p/9775037.html

posted @ 2019-07-09 16:46  傅丹辰cds  阅读(3569)  评论(0编辑  收藏  举报