Assume that name is a variable of type String that has been assigned a value. Write an expression whose value is the last character of the value of name.

LANGUAGE: Java

CHALLENGE:

Assume that name is a variable of type String that has been assigned a value. Write an expression whose value is the last character of the value of name. So if the value of name were “Blair” the expression ‘s value would be ‘r’.

SOLUTION:

name.charAt(name.length() - 1)