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

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

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-12-05
  • 2021-07-08
  • 2021-12-19
  • 2021-09-18
猜你喜欢
  • 2021-05-04
  • 2021-12-14
  • 2021-12-05
  • 2021-12-05
  • 2021-11-07
相关资源
相似解决方案