Common problem faced by developers, how to remove last character from a string using jQuery, Here I am going to explain the solution with an example.
var str = '123-4';
alert(str.slice(0, -1));
Note: Only a member of this blog may post a comment.