Javascript String preety()

Description

Javascript String preety()


String.prototype.preety = function() {
    return (this + '').replace(/(\_|\-)/g,' ');
}



PreviousNext

Related