首頁  >  文章  >  web前端  >  如何在 JavaScript 中計算兩個日期之間的分鐘數?

如何在 JavaScript 中計算兩個日期之間的分鐘數?

PHPz
PHPz轉載
2023-09-05 14:33:02707瀏覽

如何在 JavaScript 中计算两个日期之间的分钟数?

在本文中,您將了解如何在 JavaScript 中計算兩個日期之間的分鐘數。

Date 物件適用於日期和時間。日期物件是用 new Date() 建立的。 JavaScript 將使用瀏覽器的時區並將日期顯示為全文字串。

範例 1

在此範例中,我們使用函數來尋找時間差。

function minutesDiff(dateTimeValue2, dateTimeValue1) {
   var differenceValue =(dateTimeValue2.getTime() - dateTimeValue1.getTime()) / 1000;
   differenceValue /= 60;
   return Math.abs(Math.round(differenceValue));
}

dateTimeValue1 = new Date(2020,12,12);
console.log("The first date time value is defined as: ", dateTimeValue1)

dateTimeValue2 = new Date(2020,12,13);
console.log("The second date time value is defined as: ", dateTimeValue2)

console.log(" The difference in the two date time values in minutes is: ")
console.log(minutesDiff(dateTimeValue1, dateTimeValue2));

說明

  • 步驟 1 - 定義兩個日期時間值 dateTimeValue1 和 dateTimeValue2。

  • 第 2 步 - 定義一個函數 分鐘Diff,它將兩個日期值作為參數。

  • 步驟 3 - 在函數中,透過減去日期值並將其除以 1000 來計算時差。將結果再次除以 60 即可得到分鐘。

  • 第 4 步 - 顯示分鐘差異為結果。

範例 2

在此範例中,我們無需使用函數即可計算時間差。

dateTimeValue1 = new Date(2020,12,12);
console.log("The first date time value is defined as: ", dateTimeValue1)

dateTimeValue2 = new Date(2020,12,13);
console.log("The second date time value is defined as: ", dateTimeValue2)

console.log(" The difference in the two date time values in minutes is: ")
var differenceValue =(dateTimeValue2.getTime() - dateTimeValue1.getTime()) / 1000;
differenceValue /= 60;
let result = Math.abs(Math.round(differenceValue))
console.log(result)

說明

  • 步驟 1 - 定義兩個日期時間值 dateTimeValue1 和 dateTimeValue2。

  • 步驟 2 - 透過減去日期值並將其除以 1000 來計算時差。將結果再次除以 60 即可得到分鐘。

  • 第 3 步 - 顯示分鐘差為結果。

以上是如何在 JavaScript 中計算兩個日期之間的分鐘數?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除