JavaScript/Objekte/Date/getUTCMonth
Aus SELFHTML-Wiki
< JavaScript | Objekte | Date
Die Methode getUTCMonth() ist funktional identisch mit getMonth(), liefert ihren Wert jedoch nicht für die lokale Zeit, sondern für die Universal Coordinated Time (UTC), auch Greenwich Mean Time (GMT) genannt.
Syntax
dateObj.getUTCMonth(wert)
Rückgabewert ist eine ganze Zahl zwischen 0 und 11.
Siehe auch
- Date.prototype.getMonth
- Date.prototype.getUTCMonth
- Date.prototype.setUTCMonth
Weblinks
- ECMAScript: ECMASript 1st Edition 1997 (pdf) date.prototype.getutcmonth
- MDN: Global_Objects/Date/getUTCMonth