JavaScript - Metodo getFullYear () della data
Descrizione
Data Javascript getFullYear()restituisce l'anno della data specificata in base all'ora locale. Il valore restituito dagetFullYear()è un numero assoluto. Per le date comprese tra gli anni 1000 e 9999,getFullYear() restituisce un numero di quattro cifre, ad esempio 2008.
Sintassi
La sua sintassi è la seguente:
Date.getFullYear()
Valore di ritorno
Restituisce l'anno della data specificata in base all'ora locale.
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript getFullYear Method</title>
</head>
<body>
<script type = "text/javascript">
var dt = new Date("December 25, 1995 23:15:00");
document.write("getFullYear() : " + dt.getFullYear() );
</script>
</body>
</html>
Produzione
getFullYear() : 1995