📜  Node.js Date.addHours() API

📅  最后修改于: 2022-05-13 01:56:38.289000             🧑  作者: Mango

Node.js Date.addHours() API

date-and-time.Date.addHours()是用于操作 JS 日期和时间模块的极简函数集合,用于将额外的小时数添加到现有日期和时间。

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

  • 通过使用 npm。
npm install date-and-time --save
  • 通过使用 CDN 链接。

句法:

addHours(dateObj, months)

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

  • dateobject:日期的字符串对象。
  • 小时:它是小时数。

返回值:此方法返回更新的日期和时间。

示例 1:

index.js
// Node.js program to demonstrate the  
// Date.addHours() method
  
// Importing module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() 
const now  =  new Date();
  
// Adding Hours to the existing date and time
// by using date.addHours() method
const value = date.addHours(now,24);
  
// Display the result
console.log("updated date and time : " + value)


index.js
// Node.js program to demonstrate the  
// Date.addHours() method
  
// Importing module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() 
const now = new Date();
  
now.setDate(20)
  
// Adding Hours to the existing date and time
// by using date.addHours() method
const value = date.addHours(now, 30);
  
// Display the result
console.log("updated date and time : " + value)


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

node index.js

输出:

updated date and time :
Mon Mar 08 2021 20:35:37 GMT+0530 (India Standard Time)

示例 2:

index.js

// Node.js program to demonstrate the  
// Date.addHours() method
  
// Importing module
const date = require('date-and-time')
  
// Creating object of current date and time 
// by using Date() 
const now = new Date();
  
now.setDate(20)
  
// Adding Hours to the existing date and time
// by using date.addHours() method
const value = date.addHours(now, 30);
  
// Display the result
console.log("updated date and time : " + value)

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

node index.js

输出:

updated date and time :
Mon Mar 22 2021 02:37:29 GMT+0530 (India Standard Time)

参考: https://github.com/knowledgecode/date-and-time#addhoursdateobj-hours