Answers for "get the second to last character in a string javascript"

12

get last three characters of string javascript

var member = "my name is Afia";

var last3 = member.slice(-3);

alert(last3); // "fia"
Posted by: Guest on June-28-2021
35

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 "get the second to last character in a string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language