Skip to content

Challenge Use Bracket Notation To Find The Last Character In A String

Quincy Larson edited this page Aug 20, 2016 · 1 revision

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

In order to get the last letter of a string, you can subtract one from the string's length.

For example, if var firstName = "Charles", you can get the value of the last letter of the string by using firstName[firstName.length - 1].

var lastLetterOfLastName = lastName[lastName.length -1];
Clone this wiki locally