node.js怎么去除字符串空格

node.js怎么去除字符串空格

方法:可以通过正则来替换掉空格解释:这跟nodejs 没啥关系的,其实就是相当于js中的去除是一样的。实现代码:var trim = function(str){var trimLeft = ^s+,trimRight = s+$
JavaScript150