同样是定义字符串为什么 instanceof 显示的结果不一样
var oStringobject=new String("hello world");document.write(oStringobject instanceof String);
document.write("<br>");
var oStringobject1="hello world";
document.write(oStringobject1 instanceof String);
上面显示 true 下面的显示 flase
请高手赐教,谢谢。