日付オブジェクト-Date
- 日付の値を取得/設定
- 4桁の年数の値を得る - Date.getFullYear
- 4桁の年数の値を設定 - Date.setFullYear
- 年の値を得る - Date.getYear
- 年の値を設定 - Date.setYear
- 月の値を得る - Date.getMonth
- 月の値を設定 - Date.setMonth
- 日の値を得る - Date.getDate
- 日の値を設定 - Date.setDate
- 曜日の値を得る - Date.getDay
- 時の値を得る - Date.getHours
- 時の値を設定 - Date.setHours
- 分の値を得る - Date.getMinutes
- 分の値を設定 - Date.setMinutes
- 秒の値を得る - Date.getSeconds
- 秒の値を設定 - Date.setSeconds
- ミリ秒の値を得る - Date.getMilliseconds
- ミリ秒の値を設定 - Date.setMilliseconds
- 標準時からの時差を得る - Date.getTimezoneOffset
- エポックタイム
- フォーマット変換
- [Fri Apr 1 2006]の形式で日付を得る - Date.toDateString
- [00:00:00 UTF+0900]の形式で時刻を得る - Date.toTimeString
- [2006年4月1日]の形式で日付を得る - Date.toLocaleDateString
- [00:00:00]の形式で時刻を得る - Date.toLocaleTimeString
- [fri apr 1 00:00:00 utc+0900 2006]の形式で時刻を得る - Date.toLocaleLowerCase
- [FRI APR 1 00:00:00 UTC+0900 2006]の形式で時刻を得る - Date.toLocaleUpperCase
スポンサードリンク