remove a character from a string in javascript code example
Example 1: how to remove lasr char from string in javascript
str=str.slice(0, -1);
Example 2: js remove string from string
var ret = "data-123".replace(/data-/g,'');
str=str.slice(0, -1);
var ret = "data-123".replace(/data-/g,'');