remove text from end of string javascript code example
Example 1: how to remove lasr char from string in javascript
str=str.slice(0, -1);
Example 2: remove substring from string javascript
var ret = "data-123".replace('data-','');
str=str.slice(0, -1);
var ret = "data-123".replace('data-','');