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


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


date-and-time Date.addMilliseconds() 方法用于向现有日期和时间添加额外的毫秒数。

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

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

用法:

const addMilliseconds(dateObj, seconds)

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

  • dateobject:它是日期的字符串对象。
  • seconds:它是要添加的毫秒数。

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



范例1:

index.js


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

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

node index.js

输出:

updated date and time:- Fri Mar 19 2021 18:15:26 GMT+0530 (India Standard Time)

范例2:

index.js


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

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

node index.js

输出:

updated date and time:- Sat Mar 20 2021 18:16:05 GMT+0530 (India Standard Time)

参考:https://github.com/knowledgecode/date-and-time#addmillisecondsdateobj-milliseconds




相关用法


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