Answers for "remove the string js"

24

How to remove text from a string in javscript

var ret = "data-123".replace('data-','');
console.log(ret);   //prints: 123
Posted by: Guest on March-25-2020
1

how to remove a part of a string javascript

let string = "My name is Shumail";
let toBeRemove = "Shumail";
string = string.replace(tobeRemove,'');
Posted by: Guest on February-26-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language