--- title: Date.prototype.setSeconds() slug: Web/JavaScript/Reference/Global_Objects/Date/setSeconds tags: - Date - JavaScript - Method - Prototype - Reference translation_of: Web/JavaScript/Reference/Global_Objects/Date/setSeconds ---
setSeconds()
メソッドは、地方時に基づき、指定された日時の「秒」を設定します。
dateObj.setSeconds(secondsValue[, msValue])
dateObj.setSeconds(secondsValue)
secondsValue
msValue
{{Optional_inline}}協定世界時 (UTC) 1970 年 1 月 1 日 00:00:00 から更新された日時までの間のミリ秒単位の数値。
msValue
引数を指定しなかった場合、{{jsxref("Date.prototype.getMilliseconds()", "getMilliseconds()")}} メソッドから返される値が使われます。
指定した値が期待される日付の範囲外の場合、それに応じて setSeconds()
が {{jsxref("Date")}} オブジェクトの日付情報の更新を試みます。例えば、 secondsValue
に 100 を指定した場合、分に 1 が加算され、秒が 40 になります。
var theBigDay = new Date(); theBigDay.setSeconds(30);
仕様書 |
---|
{{SpecName('ESDraft', '#sec-date.prototype.setseconds', 'Date.prototype.setSeconds')}} |
{{Compat("javascript.builtins.Date.setSeconds")}}