Answers for "js get last number character"

30

javascript get last character in string

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

javascript get last n characters of string

'abc'.slice(-1); // c
Posted by: Guest on February-03-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language