Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I decided to create simple isEven and isOdd function with a very simple algorithm:

function isEven(n) {
  n = Number(n);
  return n === 0 || !!(n && !(n%2));
}

function isOdd(n) {
  return isEven(Number(n) + 1);
}

That is OK if n is with certain parameters, but fails for many scenarios. So I set out to create robust functions that deliver correct results for as many scenarios as I could, so that only integers within the limits of javascript numbers are tested, everything else returns false (including + and - infinity). Note that zero is even.

// Returns true if:
//
//    n is an integer that is evenly divisible by 2
//
// Zero (+/-0) is even
// Returns false if n is not an integer, not even or NaN
// Guard against empty string

(function (global) {

  function basicTests(n) {

    // Deal with empty string
    if (n === '') 
      return false;

    // Convert n to Number (may set to NaN)
    n = Number(n);

    // Deal with NaN
    if (isNaN(n)) 
      return false;

    // Deal with infinity - 
    if (n === Number.NEGATIVE_INFINITY || n === Number.POSITIVE_INFINITY)
      return false;

    // Return n as a number
    return n;
  }

  function isEven(n) {

    // Do basic tests
    if (basicTests(n) === false)
      return false;

    // Convert to Number and proceed
    n = Number(n);

    // Return true/false
    return n === 0 || !!(n && !(n%2));
  }
  global.isEven = isEven;

  // Returns true if n is an integer and (n+1) is even
  // Returns false if n is not an integer or (n+1) is not even
  // Empty string evaluates to zero so returns false (zero is even)
  function isOdd(n) {

    // Do basic tests
    if (basicTests(n) === false)
      return false;

    // Return true/false
    return n === 0 || !!(n && (n%2));
  }
  global.isOdd = isOdd;

}(this));

Can anyone see any issues with the above? Is there a better (i.e. more accurate, faster or more concise without being obfuscated) version?

There are various posts relating to other languages, but I can't seem to find a definitive version for ECMAScript.

Edit

A code review tag was added, but I'm not after a code review. I posted the code simply so others could see where I was up to, not as something to review. Answers posted so far seem to get that.

share|improve this question
Both I guess. How embarrassing :( – Imran Aug 3 '11 at 10:28

2 Answers

up vote 17 down vote accepted

This should be all you need in any language:

function isEven(n) 
{
   return isNumber(n) && (n % 2 == 0);
}

function isOdd(n)
{
   return isNumber(n) && (n % 2 == 1);
}

isNumber could be as simple as:

function isNumber(n)
{
   return n == parseFloat(n);
}

...or if you want to be even stricter, and not allow string representations of numbers (e.g. '12' should not be considered a valid input, but 12 should...):

function isNumber(n)
{
   return n === parseFloat(n);
}
share|improve this answer
@Steve Yes, but JS has some special issues when value is not a number, or even if it's a number. Ex.: 0.1%2, NaN%2, []%2, etc. What you wrote in the answer, he already knows it. – Alin Purcaru Jun 2 '11 at 7:29
@Steve Accordin to your tests [] is even. – Alin Purcaru Jun 2 '11 at 7:40
0.1 and NaN work fine with the function above. Empty array is a bit of a pain as it equates to 0... – Steve Mayne Jun 2 '11 at 7:41
@Alin - I've added a numeric check. I'm not sure I understand the scenario when you'd want an arithmetic function to explicitly handle other datatypes, but if that's what the OP wants... – Steve Mayne Jun 2 '11 at 7:51
1  
What about changing return n == parseInt(n); to return n === parseInt(n);? – JiminP Jun 2 '11 at 7:52
show 5 more comments

How about the following? I only tested this in IE, but it was quite happy to handle strings representing numbers of any length, actual numbers that were integers or floats, and both functions returned false when passed a boolean, undefined, null, an array or an object. (Up to you whether you want to ignore leading or trailing blanks when a string is passed in - I've assumed they are not ignored and cause both functions to return false.)

function isEven(n) {
   return /^-?\d*[02468]$/.test(n);
}

function isOdd(n) {
   return /^-?\d*[13579]$/.test(n);
}
share|improve this answer
Quite good, but can't handle 2.122e3. – RobG Jun 2 '11 at 8:49
1  
For my implementation isEven(2.122e3) returns true, but isEven("2.122e3") returns false. Conversely my isEven() fails for really big numbers because JS puts them in the exponent format when converting to string for the regex test. Oh well. – nnnnnn Jun 2 '11 at 9:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.