date-and-time.Date.isSameDay() 方法用于检查给定的日期是否相同。
所需模块:通过 npm 安装模块或在本地使用它。
- 通过使用 npm:
npm install date-and-time --save
- 通过使用 CDN 链接:
<script src="/path/to/date-and-time.min.js"></script>
用法:
isSameDay(date1, date2)
参数:此方法采用以下参数-
- date1:它持有 date1 的对象。
- date2:它持有 date2 的对象。
返回值:当且仅当两个日期相同时,此方法才返回布尔值 true。
范例1:
index.js
// Node.js program to demonstrate the
// Date.isSameDay() APi
// Importing http module
const date = require('date-and-time')
// Creating object of current date
// and time by using Date()
const now1 = new Date();
// Creating object of current date
// and time using Date() method
const now2 = new Date();
// Checking if both dates are same or not
// by using date.isSameDay() api
const value = date.isSameDay(now1,now2);
// Display the result
if(value)
console.log("Both dates are same")
else
console.log("Both dates are not same")
使用以下命令运行index.js文件:
node index.js
输出:
Both dates are same
范例2:
Javascript
// Node.js program to demonstrate the
// Date.isSameDay() APi
// Importing http module
const date = require('date-and-time')
// Creating object of current date
// and time using Date() method
const now1 = new Date();
// Creating object of current date and time
// by using Date() method
const now2 = new Date();
now1.setFullYear(2016)
// Checking if both dates are same or not
// by using date.isSameDay() method
const value = date.isSameDay(now1,now2);
// Display the result
if(value)
console.log("Both dates are same")
else
console.log("Both dates are not same")
使用以下命令运行index.js文件:
node index.js
输出:
Both dates are not same
参考: https://github.com/knowledgecode/date-and-time#issamedaydate1-date2
相关用法
- 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.isSameDay() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。