Answers for "Create a function lastLetter that takes a word (string) and returns the last character/letter of that string."

30

javascript get last character in string

var hello = "Hello World";
var lastCharOfHello=hello.slice(-1);//d
Posted by: Guest on August-01-2019

Code answers related to "Create a function lastLetter that takes a word (string) and returns the last character/letter of that string."

Code answers related to "Javascript"

Browse Popular Code Answers by Language