trim方法去除字符串左右两端的空格,在js中此方法的使用实例如下

vararr=['app','bpp','cpp'];console.log(arr);arr.forEach(function(v,i,a){a[i]=v.trim();});console.log(arr);