El método date.getYear() en JavaScript se usa para obtener el año en una fecha específica según la hora universal. El año que obtenemos del método getYear() es el año actual menos 1900.
Sintaxis:
date.getYear()
Aquí, la fecha es el objeto de la clase Date() .
Parámetro: Esta función no acepta ningún parámetro.
Valor devuelto: este método devuelve un valor que se resta de 1900 al año actual.
Ejemplo 1: este ejemplo devuelve el año de la fecha especificada según la hora universal.
Javascript
<script> // "date" is object of Date() class var date = new Date(); // Use "getYear()" method and stores // the returned value to "n" var n = date.getYear(); // Display the result document.write("The value returned by getYear() method: " + n) </script>
Producción:
The value returned by getYear() method: 119
Ejemplo 2: Este ejemplo solo envía el año al constructor.
Javascript
<script> // Year 2000 is assign to the // constructor of Date() class var date = new Date('2000') // Use "getYear()" method and stores // the returned value to "n" var n = date.getYear(); // Display the returned value // The value is the subtraction of // 2000 and 1900 document.write("The value returned by getYear() method: " + n) </script>
Producción:
The value returned by getYear() method: 100
Ejemplo 3: Aquí, pasamos una fecha completa al constructor, el formato de la fecha es mes-día-año-hora , como 15 de octubre de 2010 02:05:32 .
Javascript
<script> // Full date is assign to the constructor of Date() class var date = new Date('October 15, 2010, 02:05:32') // Use "getYear()" method and stores the // returned value in "n" var n = date.getYear(); // Display the returned value // The value is the subtraction of 2010 and 1900 document.write("The value returned by getYear() method: " + n) </script>
Producción:
The value returned by getYear() method: 110
Publicación traducida automáticamente
Artículo escrito por SoumikMondal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA