Created
January 6, 2014 13:21
-
-
Save unknownuser88/8282806 to your computer and use it in GitHub Desktop.
charAt(x) Returns the character at the “x” position within the string.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//charAt(x) | |
var myString = 'jQuery FTW!!!'; | |
console.log(myString.charAt(7)); | |
//output: F |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment