A continuación se muestra el ejemplo del método Date getDate() .
- Ejemplo:
javascript
<script> // Here a date has been assigned // while creating Date object var dateobj = new Date('October 13, 1996 05:35:32'); // date of the month from above Date Object is // being extracted using getDate() var B = dateobj.getDate(); // Printing date of the month document.write(B); </script>
- Producción:
13
El método date.getDate() se usa para obtener la fecha de un mes de un objeto Date dado.
Sintaxis:
DateObj.getDate()
Parámetro: Este método no toma ningún parámetro. Solo se usa junto con un objeto de fecha del que queremos obtener la fecha del mes.
Valores de retorno: Devuelve la fecha del mes para la fecha dada. La fecha del mes es un valor entero que va de 1 a 31.
Nota: DateObj es un objeto Date válido creado usando el constructor Date() desde el cual queremos buscar fecha.
Más códigos para el método anterior son los siguientes:
Ejemplo 1: la fecha del mes debe estar entre 1 y 31 porque ninguno de los meses tiene una fecha mayor que 31, por eso devuelve NaN, es decir, no es un número porque la fecha para el mes no existe.
javascript
<script> // Here a date has been assigned // while creating Date object var dateobj = new Date('October 33, 1996 05:35:32'); // date of the month given above date object // is being extracted using getDate(). var B = dateobj.getDate(); // Printing date of the month. document.write(B); </script>
Producción:
NaN
Ejemplo 2: Si no se da la fecha del mes, por defecto devuelve 1. Es un caso de excepción.
javascript
<script> // Here a date has been assigned // while creating Date object var dateobj = new Date('October 1996 05:35:32'); // date of the month from above date object // is extracted using getDate() var B = dateobj.getDate(); // Printing date of the month document.write(B); </script>
Producción:
1
Ejemplo 3: si no se proporciona nada como parámetro al constructor Fecha, la función devuelve la fecha actual del mes.
javascript
<script> // Creating Date Object var dateobj = new Date(); // date of the month from above object // is being extracted using getDate(). var B = dateobj.getDate(); // Printing current date document.write(B); </script>
Producción:
21
Navegadores compatibles: los navegadores compatibles con el método JavaScript Date getDate() se enumeran a continuación:
- Google Chrome 1 y superior
- Borde 12 y superior
- Firefox 1 y superior
- Internet Explorer 3 y superior
- Ópera 3 y superior
- Safari 1 y superior
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA