Skip to content

Instantly share code, notes, and snippets.

@zaidaldabbagh
Last active January 10, 2019 22:53
Show Gist options
  • Save zaidaldabbagh/53dcfb2b63145efa346c8366685a211c to your computer and use it in GitHub Desktop.
Save zaidaldabbagh/53dcfb2b63145efa346c8366685a211c to your computer and use it in GitHub Desktop.
function camelCaseToSentenceCase(word) {
const result = word.replace(/([A-Z])/g, ' $1');
const finalResult = result.charAt(0).toUpperCase() + result.slice(1);
return (
<span>{finalResult}</span>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment