Answers for "javascript write code to print out the first and last characters of the string"

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

Code answers related to "javascript write code to print out the first and last characters of the string"

Code answers related to "Javascript"

Browse Popular Code Answers by Language