Ciao sono nuovo in javascript ho tale codice javascript
alert(DATE.value);
var d = new Date(DATE.value);
var year = d.getFullYear();
var month = d.getMonth();
var day = d.getDay();
alert(month);
alert(day);
if(2012 < year < 1971 | 1 > month+1 > 12 | 0 >day > 31){
alert(errorDate);
DATE.focus();
return false;
}
prendiamo ad esempio: DATE.value = "11/11/1991"
quando chiamo alert(day);
mi mostra 3
;
quando chiamo alert(d);
mi restituisce informazioni corrette.