myString.replace(/<[^>]*>?/gm, '');
// string with html tags const str = "<div><h1>Hello World!</h1></div>"; // remove all html tags from string str.replace(/(<([^>]+)>)/gi, ""); // Hello World