Javascript Number equals(another)

Description

Javascript Number equals(another)


Number.prototype.equals = function (another) {
    return this - another === 0;
};



PreviousNext

Related