remove specific string from string js code example
Example 1: javascript remove specific character from string
var newString = oldString.replaceAll("character/string goes here", "");
// Example
var oldString = "Hello World!";
var newString = oldString.replaceAll("o", "");
console.log(newString);
// Prints 'Hell Wrld!' to console.
Example 2: js remove string from string
var ret = "data-123".replace('data-','');
console.log(ret); //prints: 123