/ Published in: JavaScript
                    
                                        
One of those common tools that's easy to forget about is the Modulus operator (%), which returns the remainder of a division operation.
If you divide some number by two, a remainder of 0 indicates an even number, while a remainder of 1 indicates an odd number.
                If you divide some number by two, a remainder of 0 indicates an even number, while a remainder of 1 indicates an odd number.
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
var isEven = function(someNumber){
return (someNumber%2 == 0) ? true : false;
};
alert(isEven(64)); // Alerts "true".
alert(isEven(97)); // Alerts "false".
URL: https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Operators/Arithmetic_Operators
Comments
 Subscribe to comments
                    Subscribe to comments
                
                