我决定用一个非常简单的算法创建简单的isEven和isOdd函数:

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

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

如果n带有某些参数,这是可行的,但在许多情况下都行不通。因此,我开始创建健壮的函数,为尽可能多的场景提供正确的结果,以便只测试javascript数字限制内的整数,其他一切返回false(包括+和-∞)。注意,0是偶数。

// 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));

有人能看出上面的问题吗?是否有更好的(更准确,更快或更简洁而不混淆)版本?

有很多关于其他语言的帖子,但我似乎找不到ECMAScript的权威版本。


当前回答

一个简单的修改/改进史蒂夫梅恩的答案!

function isEvenOrOdd(n){
    if(n === parseFloat(n)){
        return isNumber(n) && (n % 2 == 0);
    }
    return false;
}

注意:无效返回false !

其他回答

下面这个怎么样?我只在IE中测试了这个,但它很乐意处理表示任何长度的数字的字符串,实际数字是整数或浮点数,两个函数在传递布尔值时返回false,未定义,null,数组或对象。(当传入一个字符串时,你是否想忽略前导空格或尾随空格由你决定——我假设它们不会被忽略,并导致两个函数都返回false。)

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

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

否则就用字符串,为什么不呢

function isEven(__num){
    return String(__num/2).indexOf('.') === -1;
}

使用现代javascript风格:

const NUMBERS = "nul one two three four five six seven ocho nueve".split(" ")

const isOdd  = n=> NUMBERS[n % 10].indexOf("e")!=-1
const isEven = n=> isOdd(+n+1)

完成Robert Brisita的钻头测试。

if ( ~i & 1 ) {
    // Even
}
var num = someNumber
    isEven;
parseInt(num/2) === num/2 ? isEven = true : isEven = false;