Skip to content

Instantly share code, notes, and snippets.

@alexko30
Created April 30, 2018 22:35
Show Gist options
  • Save alexko30/fbe8008b3ac014a008ae4f9949a32ff9 to your computer and use it in GitHub Desktop.
Save alexko30/fbe8008b3ac014a008ae4f9949a32ff9 to your computer and use it in GitHub Desktop.
first Char to Upper Case
function firstCharUpperCase(str) {
console.log(str.charAt(0).toUpperCase() + str.slice(1));
}
firstCharUpperCase('ukraine');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment