建议34:字符串是非值操作

var a = "javascript";
var b = a;
b = b.toUpperCase();
alert(a);  //javascript;
alert(b); //JAVASCRIPT;
建议34

相关文章: