So entfernen Sie Text aus einer Zeichenfolge in Javscript

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