Skip to content

Instantly share code, notes, and snippets.

@unknownuser88
Created January 6, 2014 13:21
Show Gist options
  • Save unknownuser88/8282806 to your computer and use it in GitHub Desktop.
Save unknownuser88/8282806 to your computer and use it in GitHub Desktop.
charAt(x) Returns the character at the “x” position within the string.
//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