Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ashwinkumar2438/1f117636fd015c2db049a01df9237a21 to your computer and use it in GitHub Desktop.
Save ashwinkumar2438/1f117636fd015c2db049a01df9237a21 to your computer and use it in GitHub Desktop.
var name=" R e g E x p ";
var namewithoutspaces1=name.replace(" ",""); // "R e g E x p "
var namewithoutspaces2=name.replace(/\s/g,"");// "RegExp"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment