Answers for "how to remove html tags from string javascript"

1

remove the html tags in javascript

let strippedString = originalString.replace(/(<([^>]+)>)/gi, "");
Posted by: Guest on October-08-2020

Code answers related to "how to remove html tags from string javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language