String.split('');// splits a string into an array// regular expressions'a'.match(/[aeiou]/);// matches any vowel'!'.match(/\w/);// matches a word characterword=words[i].match(/\w*/)[0];// the match will return an array you can get the word and assign it to a variable by [] syntax.'a'.charCodeAt()// gives you a character code from a letterfromCharCode(1);// gives you a letter from character codeString.toUpperCase();