Javascript String toCorrectCase()

Description

Javascript String toCorrectCase()

String.prototype.toCorrectCase = function () {
    if(isNaN(this) && sys.id(this) !== undefined) {
        return sys.name(sys.id(this));
    } else {/*from   w w w .j  a  v a2 s .c om*/
        return this;
    }
};



PreviousNext

Related