charAt()

var myWord = new String("Opus");
var myChar = myWord.charAt(2);
// "myChar" will contain the string "u"

Close