Skip to content

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

SaintPeter edited this page · 1 revision
Clone this wiki locally

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];

Something went wrong with that request. Please try again.