当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js Date.subtract()用法及代码示例


date-and-time Date.subtract() 方法用于减去两个日期对象。

所需模块:通过 npm 安装模块或在本地使用它。

  • 通过使用 npm。
npm install date-and-time --save
  • 通过使用 CDN 链接。
<script src="/path/to/date-and-time.min.js"></script>

用法:

const subtract(date1, date2)

参数:此方法将以下参数作为参数:

  • date1:它是从中减去第二个日期的第一个日期对象。
  • date2:它是第二个日期对象。

返回值:此方法返回从 date1 减去 date2 的结果对象。



范例1:

index.js


// Node.js program to demonstrate the  
// Date.subtract() method
  
// Importing date-and-time module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() 
const now  =  new Date();
  
// Creating object of given date and time
const date1 = new Date(2015, 0, 1);
  
// Subtracting the both dates
// by using date.subtract() method
const value = date.subtract(now,date1);
  
// Display the result
console.log("total days between them " 
   + value.toDays())

使用以下命令运行index.js文件:

node index.js

输出:

total days between them 2270.3951833333335

范例2:

index.js


// Node.js program to demonstrate the  
// Date.subtract() method
  
// Importing date-and-time module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() 
const now  =  new Date();
  
// Setting days in the exisiting date
now.setDate(20);
  
// Creating object of given date and time
const date1 = new Date(2015, 0, 1);
  
// Subtracting the both dates
// by using date.subtract() method
const value = date.subtract(now,date1);
  
// Display the result
console.log("total days between them " + value.toDays())

使用以下命令运行index.js文件:

node index.js

输出:

total days between them 2270.397227997685

参考:https://github.com/knowledgecode/date-and-time#subtractdate1-date2




相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node.js date-and-time Date.subtract() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。