JavaScript - Metodo getMinutes () della data
Descrizione
Data Javascript getMinutes()restituisce i minuti nella data specificata in base all'ora locale. Il valore restituito dagetMinutes() è un numero intero compreso tra 0 e 59.
Sintassi
La sua sintassi è la seguente:
Date.getMinutes()
Valore di ritorno
Restituisce i minuti nella data specificata in base all'ora locale.
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript getMinutes Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date( "December 25, 1995 23:15:00" );
document.write("getMinutes() : " + dt.getMinutes() );
</script>
</body>
</html>
Produzione
getMinutes() : 15