Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
数组是可变的。我可以做这个:
var arr = [0,1,2,3]; arr[4] = 4;
但不是这个
var str = "abcd"; str[4] = "e";
这是我觉得不直观的东西。