how to remove a word from a string in react code example
Example: js remove string from string
var ret = "data-123".replace('data-','');
console.log(ret); //prints: 123
var ret = "data-123".replace('data-','');
console.log(ret); //prints: 123