码迷,mamicode.com
首页 > 其他好文 > 详细

「思考题」模拟实现字符串的trim()函数

时间:2020-04-03 18:10:49      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:模拟   prototype   测试   his   return   turn   lan   lang   pre   

function trim() {
    let reg = /(^\s*)|(\s*$)/g
    let res = this.replace(reg, ‘‘)
    return res
}

String.prototype.trim = trim


// 测试
let str = ‘    hello word    ‘
console.log(str.trim())
// "hello word"

「思考题」模拟实现字符串的trim()函数

标签:模拟   prototype   测试   his   return   turn   lan   lang   pre   

原文地址:https://www.cnblogs.com/liea/p/12627792.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!