cara mengambil teks dari array string dalam reaksi

var ret = "data-123".replace('data-');
console.log(ret);   //prints: 123
Condemned Chipmunk