Skip to content

Instantly share code, notes, and snippets.

@st98
Created June 29, 2014 16:40
Show Gist options
  • Save st98/9f98e808d4aadd2af5fa to your computer and use it in GitHub Desktop.
Save st98/9f98e808d4aadd2af5fa to your computer and use it in GitHub Desktop.
'hoge'.charAt(n) と 'hoge'[n] の違い。
'hoge'.charAt(3); // => 'e'
'hoge'[3]; // => 'e'
'hoge'.charAt(4); // => ''
'hoge'[4]; // => undefined
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment