Skip to content

Instantly share code, notes, and snippets.

@moxdev
Created July 5, 2018 14:53
Show Gist options
  • Save moxdev/e8a52d32f7a63cfcd25284efc606d24f to your computer and use it in GitHub Desktop.
Save moxdev/e8a52d32f7a63cfcd25284efc606d24f to your computer and use it in GitHub Desktop.
Capitalize first letter of every word in a string in Javascript
capitalizeString = str => {
str = str.toString();
str = str.split(" ");
for (var i = 0, x = str.length; i < x; i++) {
str[i] = str[i][0].toUpperCase() + str[i].substr(1);
}
return str.join(" ");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment