Movatterモバイル変換


[0]ホーム

URL:


  1. 給開發者的 Web 技術文件
  2. JavaScript
  3. JavaScript 參考文件
  4. 標準內建物件
  5. Date
  6. Date.prototype.getUTCMinutes()

此頁面由社群從英文翻譯而來。了解更多並加入 MDN Web Docs 社群。

View in EnglishAlways switch to English

Date.prototype.getUTCMinutes()

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2015年7月⁩.

Date 實例的getUTCMinutes() 方法會根據世界協調時間回傳此日期的分鐘數。

嘗試一下

const date1 = new Date("1 January 2000 03:15:30 GMT+07:00");const date2 = new Date("1 January 2000 03:15:30 GMT+03:30");console.log(date1.getUTCMinutes()); // 1999 年 12 月 31 日 20:15:30 GMT// 預期輸出:15console.log(date2.getUTCMinutes()); // 1999 年 12 月 31 日 23:45:30 GMT// 預期輸出:45

語法

js
getUTCMinutes()

參數

無。

回傳值

一個介於 0 到 59 之間的整數,表示根據世界協調時間的給定日期的分鐘數。如果日期是無效的,則回傳NaN

範例

使用 getUTCMinutes()

以下範例將目前時間的分鐘部分指派給變數minutes

js
const today = new Date();const minutes = today.getUTCMinutes();

規範

Specification
ECMAScript® 2026 Language Specification
# sec-date.prototype.getutcminutes

瀏覽器相容性

參見

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp