--- title: Date.prototype.getUTCSeconds() slug: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds tags: - Date - JavaScript - Method - Prototype - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Date/getUTCSeconds ---
getUTCSeconds()
メソッドは、協定世界時に基づき、指定された日時の「秒」を返します。
dateObj.getUTCSeconds()
協定世界時に基づき、与えられた日時の「秒」を表す 0 から 59 までの間の整数値。
次の例は、現在日時の「秒」部を変数 seconds
に代入します。
var today = new Date(); var seconds = today.getUTCSeconds();
仕様書 |
---|
{{SpecName('ESDraft', '#sec-date.prototype.getutcseconds', 'Date.prototype.getUTCSeconds')}} |
{{Compat("javascript.builtins.Date.getUTCSeconds")}}