111-js-27-手写trim

概述

原型,this,正则

示例

String.prototype.trim = function() {
  return this.replace(/^\s+/,'').replace(/\s+$/,'')
}