Javascript String firstUpperCase()

Description

Javascript String firstUpperCase()


/**//from ww  w . ja v a 2 s.  c  om
 * Created by JasonChou on 16/5/3.
 */
String.prototype.firstUpperCase = function () {
    this.replace(/(\w)/, function (v) {
        return v.toUpperCase() + 'ddd'
    });
};

var name = 'zwb';
var a = name.firstUpperCase();

console.log(a);
console.log(name);



PreviousNext

Related