Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Date.prototype.getDate()

Esta traducción está incompleta. Por favor, ayuda a traducir este artículo del inglés.

El método getDate() devuelve el día del mes para la fecha especificada de acuerdo con la hora local.

Sintaxis

dateObj.getDate()

Parámetros

Ninguno.

Valor de retorno

El valor devuelto por getDate() es un entero entre 1 y 31.

Ejemplos

Uso de getDate()

La segunda instrucción asigna el valor 25 a la variable day, en función del valor del objeto Date Xmas95.

var Xmas95 = new Date('December 25, 1995 23:15:30');
var day = Xmas95.getDate();

console.log(day); // 25

Especificaciones

Especificación Estado Comentario
ECMAScript 2015 (6th Edition, ECMA-262)
The definition of 'Date.prototype.getDate' in that specification.
Standard  
ECMAScript 5.1 (ECMA-262)
The definition of 'Date.prototype.getDate' in that specification.
Standard  
ECMAScript 1st Edition (ECMA-262) Standard Definición inicial. Implantado en JavaScript 1.1.

Compatibilidad con navegadores

Característica Chrome Firefox (Gecko) Internet Explorer Opera Safari
Soporte básico (Yes) (Yes) (Yes) (Yes) (Yes)
Característica Android Chrome for Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Soporte básico (Yes) (Yes) (Yes) (Yes) (Yes) (Yes)

Véase también

Etiquetas y colaboradores del documento

 Colaboradores en esta página: helmantika, ycanales
 Última actualización por: helmantika,