date-and-time.Date.addMinutes() 方法用於將額外的分鍾添加到現有日期和時間。
所需模塊:通過 npm 安裝模塊或在本地使用它。
- 通過使用 npm:
npm install date-and-time --save
- 通過使用 CDN 鏈接:
<script src="/path/to/date-and-time.min.js"></script>
用法:
const addMinutes(dateObj, minutes)
參數: 此方法將以下參數作為參數:
- dateobject:它是日期的字符串對象。
- minutes:它是要添加的分鍾數。
返回值:此方法返回更新的日期和時間。
範例1:
index.js
// Node.js program to demonstrate the
// Date.addMinutes() 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();
// Adding Minutes to the existing
// date and time by using
//date.addMinutes() method
const value = date.addMinutes(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:38:26 GMT+0530 (India Standard Time)
範例2:
index.js
// Node.js program to demonstrate the
// Date.addMinutes() 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();
now.setDate(20)
// Adding Minutes to the existing date and time
// by using date.addMinutes() method
const value = date.addMinutes(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:04:43 GMT+0530 (India Standard Time)
參考:https://github.com/knowledgecode/date-and-time#addminutesdateobj-minutes
相關用法
- 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.addMinutes() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。