Skip to content

Instantly share code, notes, and snippets.

@phiggins42
Created June 9, 2009 16:54
Show Gist options
  • Save phiggins42/126642 to your computer and use it in GitHub Desktop.
Save phiggins42/126642 to your computer and use it in GitHub Desktop.
// test a value for spaces, reduce a value to no spaces.
var re = / /g, value = "Some text with spaces";
if(value.test(re)){
var t = value.replace(re,"");
console.log(t.length);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment