Math.isEven = function( num ) { return !( num & 1 ); }; Math.isOdd = function( num ) { return !!( num & 1 ); }; alert( Math.isEven( 11 ) ); alert( Math.isOdd( 11 ) );
Math.isEven = function( num ) { return !( num & 1 ); }; Math.isOdd = function( num ) { *!* return !Math.isEven(num); */!* };