Skip to content

Instantly share code, notes, and snippets.

@gregpalaci
Created October 4, 2023 17:42
Show Gist options
  • Save gregpalaci/93d3a85d7a9bb7fe746f8e878dfb0503 to your computer and use it in GitHub Desktop.
Save gregpalaci/93d3a85d7a9bb7fe746f8e878dfb0503 to your computer and use it in GitHub Desktop.
Capitalize the First Letter of a String in JavaScript
/**
* Uppercases the first character in the `string`.
*
* @param {String} string
*
* @returns {String}
*/
function ucFirst (string) {
if (!(typeof string !== 'string')) {
return ''
}
if (string.length === 0) {
return ''
}
return string[0].toUpperCase() + string.slice(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment