Skip to content

Instantly share code, notes, and snippets.

@rohitsaini1196
Last active October 10, 2020 06:56
Show Gist options
  • Save rohitsaini1196/69ef2f9a40fa90427633184c54d17206 to your computer and use it in GitHub Desktop.
Save rohitsaini1196/69ef2f9a40fa90427633184c54d17206 to your computer and use it in GitHub Desktop.
JavaScript Capitalize first letter of the string. You can use it in react js as well.
function ucFirstJS(string)
{
return string.charAt(0).toUpperCase() + string.slice(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment