Skip to content

Challenge Use Bracket Notation to Find the Nth Character in a String

SaintPeter edited this page · 1 revision
Clone this wiki locally

Use Bracket Notation to Find the Nth Character in a String

You can also use bracket notation to get the character at other positions within a string.

Remember that computers start counting at 0, so the first character is actually the zeroth character.

var thirdLetterOfLastName = lastName[2];

Something went wrong with that request. Please try again.