JavaScript -> Objekty -> Date -> Metóda Date.setMonth
Syntax
date.setMonth(číslo 0 - 11)
Popis
Príkaz jazyka JavaScript
nastaví mesiac
Príklad
//Druhy prikaz uvedeny nize zmeni mesic v theBigDay na 0 (leden - january) z jeho puvodni hodnoty.
theBigDay =
new Date
("July 27, 1962 23:30:00")
theBigDay.setMonth
(0
)
document.writeln(theBigDay
)
//Sat Jan 27 1962 23:30:00 GMT+0100
Pozri aj
Date.getMonth