首页 > 代码库 > javascript中字符串和字符串变量的问题

javascript中字符串和字符串变量的问题

var s = new String("hello");s.indexOf(1) = ‘p‘; //错误,indexof()是函数 s[1]=‘p‘   //错误,在c和c++可以改变字符串变量元素的值,但这里貌似有问题alert(s);   //显示“hello”

  

 

 var s = new String("Visit Microsoft!")var a=s.replace(/Microsoft/, "W3School")alert(a); alert(s); // 显示“Visit Microsoft!” ,没有改变原来的值

 

var s = "hello";var a = new String (‘hi‘);alert(s);alert(typeof(s));   // stringalert(typeof(s.length))  //numberalert(a);alert(typeof(a));   //object