js正则实现trim函数的功能

let str = ' sad';
str.replace(/(^\s)|(\s$)/g, "")返回的就是去除了两端空格的字符串

你可能感兴趣的:(js)