Answers for "remove word from sentence js"

19

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
0

js remove ta contin word

$('div:contains("word2")').remove();
Posted by: Guest on December-10-2020

Code answers related to "remove word from sentence js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language