Javascript Number even()
even()
Number.prototype.even = function () { return (this % 2 == 0) }
Number.prototype.even = function() { return this.constructor.even(this) }