有什么理由我应该使用 string.charAt(x)
而不是括号表示法 string[x]
吗?
最佳答案
括号表示法现在适用于所有主要浏览器,IE7 及以下版本除外。
// Bracket Notation
"Test String1"[6]
// charAt Implementation
"Test String1".charAt(6)
过去使用方括号是个坏主意,因为这些原因 ( Source ):
关于javascript - string.charAt(x) 还是 string[x]?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5943726/