remove a character from a string javascript code example

Example 1: how to remove lasr char from string in javascript

str=str.slice(0, -1);

Example 2: How to remove text from a string in javscript

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

Example 3: js remove string from string

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

Example 4: javascript remove character from string

mystring.replace(/r/g, '')

Example 5: js remove string from string

var ret = "data-123".replace(/data-/g,'');