JavaScript Methods > String Methods > Flashcards
How would I get the length of a string?
string.length
The length of an empty string is 0
How would I get the character at a specific index in a string?
string.charAt(index)Note, last