lastday.js
function lastday () {
var check,
now = new Date(),
y = now.getFullYear(),
m = now.getMonth();
for ( i = 27; i < = 32; i++ ) {
check = new Date( y, m, i );
if ( check.getMonth() != m ) {
return i - 1;
}
}
}
document.write( '今月の最終日は'+ lastday() +'日です。' );
閏年とか気にしないで取得できます。