Trying to Index Strings in IE

'abc'[0]

gets you undefined in IE. The correct way is to do 'abc'.charAt(0).

blog comments powered by Disqus