var str = "Hello World";
var finalStr = str.substring(0, str.length-1);
To remove the last character from a string in javascript you can use .substring() function of javascript and pass start and end index as a parameter. Here we have passed the start index as 0 and the end index as string length - 1.
0 Comments