Javascript String ugly()

Description

Javascript String ugly()


String.prototype.ugly = function() {
    return this.replace(/ /g, "_").toUpperCase();
}



PreviousNext

Related