js remove and get word from string code example
Example 1: js remove string from string
var ret = "data-123".replace('data-','');
console.log(ret); //prints: 123
Example 2: how to remove a text by javascript
var ret = "data-123".replace('data-','');