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 console.timeLog()用法及代碼示例
- Node.js x509.toLegacyObject()用法及代碼示例
- Node.js fs.fsyncSync()用法及代碼示例
- Node.js process.nextTick()用法及代碼示例
- Node.js GM drawLine()用法及代碼示例
- Node.js GM drawArc()用法及代碼示例
- Node.js GM drawPolyline()用法及代碼示例
- Node.js GM drawBezier()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js date-and-time Date.isLeapYeart() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。