cut string from string javascript

JavaScript
var ret = "data-123".replace('data-','');
console.log(ret);   //prints: 123
Source

Also in JavaScript: