Node.js examples for Number:Compare
Compare two number for equal
Number.prototype.equals = function (another) { return this - another === 0; };