Skip to content

Instantly share code, notes, and snippets.

@jookyboi
Last active October 23, 2017 20:32
Show Gist options
  • Save jookyboi/7176143 to your computer and use it in GitHub Desktop.
Save jookyboi/7176143 to your computer and use it in GitHub Desktop.
Capitalize first letter of event
function capitaliseFirstLetter(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