Skip to content

Instantly share code, notes, and snippets.

@bobdobbalina
Created January 20, 2021 19:24
Show Gist options
  • Select an option

  • Save bobdobbalina/fed59aa3d2274911aa112b64b0bc299f to your computer and use it in GitHub Desktop.

Select an option

Save bobdobbalina/fed59aa3d2274911aa112b64b0bc299f to your computer and use it in GitHub Desktop.
Javascript: Strip HTML tags
const stripHTMLTags = str => str.replace(/<[^>]*>/g, '');
stripHTMLTags('<a href="#">Me & you</a>');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment