在String的原型上实现去掉字符串中的空白字符

String.prototype.nospace = function(){

    return this.replace(/\s/g,"")

} 
var str = "  hello world  ";

console.log(str.nospace());  //helloworld

  

posted @ 2019-08-03 13:36  Yi只猴  阅读(120)  评论(0编辑  收藏  举报