参考答案:
代码语言:javascript复制// 重写trim方法
if (!String.prototype.trim) {
String.prototype.trim = function() {
return this.replace(/^s /, "").replace(/s $/, "");
};
}
// test the function
var str = " tn test string ".trim();
console.log(str == "test string"); // true