Date.setMinutes
JavaScript -> Objekty -> Date -> Metóda Date.setMinutes
Syntax
date.setMinutes(číslo 0 - 59)
Popis
Príkaz jazyka JavaScript
nastaví minúty
Príklad
//Druhy prikaz uvedeny nize zmeni minuty v theBigDay na 45 z jejich puvodni hodnoty.
theBigDay = new Date("July 27, 1962 23:30:00")
theBigDay.setMinutes(45)
document.writeln(theBigDay)
//Fri Jul 27 1962 23:45:00 GMT+0200
theBigDay = new Date("July 27, 1962 23:30:00")
theBigDay.setMinutes(45)
document.writeln(theBigDay)
//Fri Jul 27 1962 23:45:00 GMT+0200
Pozri aj
Date.getMinutes