SOURCE

console 命令行工具 X clear

                    
>
console
// 第一题
var str="Wel com  e";
var count=0;
document.write(str+"<br>")
str =str.replace(/\s/g,"");
for(var i of str){
    count++
}
document.write("长度:"+count+"<br>")