show/hide this revision's text 3 added 131 characters in body

The way JavaScript works with Date() just excites me!

function isLeapYear(year) {
    return (new Date(year, 1, 29, 0, 0).getMonth() != 2);
}

This is really "hidden feature".

Edit: Removed "?" condition as suggested in comments for politcorrecteness. Was: ... new Date(year, 1, 29, 0, 0).getMonth() != 2 ? true : false ... Please look at comments for details.

show/hide this revision's text 2 added 46 characters in body

The way JavaScript works with Date() just excites me!

function isLeapYear(year) {
    return ((new new Date(year, 1, 29, 0, 0).getMonth() =!= 2) ? false : true)2);
}

This is really "hidden feature".

Edit: Removed "?" condition as suggested in comments.

    Post Made Community Wiki by Community
show/hide this revision's text 1