Answers for "how to get the last three characters of an array in javascript"

5

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
7

javascript get last n characters of string

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

Code answers related to "how to get the last three characters of an array in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language