Answers for "js funtion to remove tags"

1

remove the html tags in javascript

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

Code answers related to "Javascript"

Browse Popular Code Answers by Language