var aryMonthDays = new Array( / Jan / 31, / Feb / 29, / Mar / 31, / Apr / 30, / May / 31, / Jun / 30, / Jul / 31, / Aug / 31, / Sep / 30, / Oct / 31, / Nov / 30, / Dec / 31 );
var aryMonthDays = new Array(; 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31); aryMonthDays[1] = (((!(nYear % 4)) && (nYear % 100)) || !(nYear % 400)) ? 29 : 28 return aryMonthDays[nMonth - 1]; };
Anonymous
You seem to have CSS turned off. Please don't fill out this field.
這一個問題已經處理完成。
source code:
var aryMonthDays = new Array(
/ Jan / 31, / Feb / 29, / Mar / 31, / Apr / 30,
/ May / 31, / Jun / 30, / Jul / 31, / Aug / 31,
/ Sep / 30, / Oct / 31, / Nov / 30, / Dec / 31 );
Output code:
var aryMonthDays = new Array(; 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31);
aryMonthDays[1] = (((!(nYear % 4)) && (nYear % 100)) || !(nYear % 400)) ? 29 : 28
return aryMonthDays[nMonth - 1];
};
這一個問題已經處理完成。