javascript

Remove last character of a string in Javascript

var str = "Hello World";
var finalStr = str.substring(0, str.length-1);
Output
Hello Worl

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.

Was this helpful?