浅析为什么a="abc" 不等于 a=new String("abc") 显而易见a="abc"typeofa//stringb=newString("abc")typeofb//objecta==b//truea===b//false但是为什么呢?看了很 a=