es5、es6字符处理
1.去除字符两端的空格(es5)
trim()
let a = ' ant ';
console.log("ant",a.length);
//ant 5
let b = a.trim();
console.log("ant",b.length);
//ant 3
2.重复输出字符(es6)
repeat()
let b ="德玛西亚";
console.log(b.repeat(2));
//德玛西亚德玛西亚
版权声明:本文为weixin_45019566原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。