date-and-time.Date.isLeapYear() 是一个用于操作 JS 日期和时间模块的极简函数集合,用于检查给定年份是否为闰年。
所需模块:通过npm安装模块或在本地使用。
通过使用 npm:
npm install date-and-time --save
通过使用 CDN 链接:
<script src="/path/to/date-and-time.min.js"></script>
用法:
const isLeapYear(y)
参数:此方法需要一串年份。
返回值:当且仅当年份字符串为闰年时,此方法返回布尔值 true。
示例 1:
index.js
// Node.js program to demonstrate the
// Date.isLeapYear() method
// Importing http module
const date = require('date-and-time')
// creating object of current date and time
// by using Date()
const now = new Date();
// Checking the year is leap or not
// by using date.isLeapYear() api
const value = date.isLeapYear(now.getFullYear());
// display the result
if(value)
console.log("This is a leap year")
else
console.log("This is not a leap year")
使用以下命令运行 index.js 文件:
node index.js
输出:
This is not a leap year
示例 2:
index.js
// Node.js program to demonstrate the
// Date.isLeapYear() method
// Importing http module
const date = require('date-and-time')
// Creating object of current date and time
// by using Date() method
const now = new Date();
now.setFullYear(2016)
// Checking the year leap or not
// by using date.isLeapYear() api
const value = date.isLeapYear(now.getFullYear());
// Display the result
if(value)
console.log("This is a leap year")
else
console.log("This is not a leap year")
使用以下命令运行 index.js 文件:
node index.js
输出:
This is a leap year
参考: https://github.com/knowledgecode/date-and-time#isleapyeary
相关用法
- Node.js Date.isLeapYeart()用法及代码示例
- Node.js Date.isValid()用法及代码示例
- Node.js Date.isSameDay()用法及代码示例
- Node.js Date.addDays()用法及代码示例
- Node.js Date.addHours()用法及代码示例
- Node.js Date.addMonths()用法及代码示例
- Node.js Date.addYears()用法及代码示例
- Node.js Date.compile()用法及代码示例
- Node.js Date.format()用法及代码示例
- Node.js Date.parse()用法及代码示例
- Node.js Date.preparse()用法及代码示例
- Node.js Date.addMilliseconds()用法及代码示例
- Node.js Date.addMinutes()用法及代码示例
- Node.js Date.addSeconds()用法及代码示例
- Node.js Date.locale()用法及代码示例
- Node.js Date.subtract()用法及代码示例
- Node.js Date.transform()用法及代码示例
- Node.js Decipher.final()用法及代码示例
- Node.js Decipher用法及代码示例
- Node.js DiffieHellman用法及代码示例
- Node.js DiffieHellmanGroup用法及代码示例
- Node.js Domain.bind(callback)用法及代码示例
- Node.js Domain.intercept(callback)用法及代码示例
- Node.js Domain.run(fn[, ...args])用法及代码示例
- Node.js urlObject.auth()用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js date-and-time Date.isLeapYear() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。