Skip to content

Instantly share code, notes, and snippets.

@mattlljones
Last active August 29, 2015 14:27
Show Gist options
  • Save mattlljones/03f8408270b6b9693694 to your computer and use it in GitHub Desktop.
Save mattlljones/03f8408270b6b9693694 to your computer and use it in GitHub Desktop.
var str = "some test to capitalize";
str.replace(/\b[a-z]/g, function (c) {
return c.toUpperCase();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment