此頁面由社群從英文翻譯而來。了解更多並加入 MDN Web Docs 社群。
Date.prototype.getSeconds()
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 實例的getSeconds() 方法會根據本地時間回傳此日期的秒數。
In this article
嘗試一下
const moonLanding = new Date("July 20, 69 00:20:18");console.log(moonLanding.getSeconds());// 預期輸出:18語法
js
getSeconds()參數
無。
回傳值
一個介於 0 到 59 之間的整數,表示根據本地時間的給定日期的秒數。如果日期是無效的,則回傳NaN。
範例
>使用 getSeconds()
seconds 變數的值為30,基於Date 物件xmas95 的值。
js
const xmas95 = new Date("1995-12-25T23:15:30");const seconds = xmas95.getSeconds();console.log(seconds); // 30規範
| Specification |
|---|
| ECMAScript® 2026 Language Specification> # sec-date.prototype.getseconds> |