How do I make the first letter of a string uppercase, but not change the case of any of the other letters?
For example:
"this is a test"
β "This is a test"
"the Eiffel Tower"
β "The Eiffel Tower"
"/index.html"
β "/index.html"
To capitalize the first character of a string, We can use the charAt() to separate the first character and then use the toUpperCase() function to capitalize it.
To capitalize an entire string, simply call . toUpperCase() on the string: let myString = 'alligator'; myString.
To use a keyboard shortcut to change between lowercase, UPPERCASE, and Capitalize Each Word, select the text and press SHIFT + F3 until the case you want is applied.
The basic solution is:
function capitalizeFirstLetter(string) { return string.charAt(0).toUpperCase() + string.slice(1); } console.log(capitalizeFirstLetter('foo')); // Foo
Some other answers modify String.prototype
(this answer used to as well), but I would advise against this now due to maintainability (hard to find out where the function is being added to the prototype
and could cause conflicts if other code uses the same name / a browser adds a native function with that same name in future).
...and then, there is so much more to this question when you consider internationalisation, as this astonishingly good answer (buried below) shows.
If you want to work with Unicode code points instead of code units (for example to handle Unicode characters outside of the Basic Multilingual Plane) you can leverage the fact that String#[@iterator]
works with code points, and you can use toLocaleUpperCase
to get locale-correct uppercasing:
const capitalizeFirstLetter = ([ first, ...rest ], locale = navigator.language) => first.toLocaleUpperCase(locale) + rest.join('') console.log( capitalizeFirstLetter('foo'), // Foo capitalizeFirstLetter("πΆπ²ππΌπ²π"), // "ππ²ππΌπ²π" (correct!) capitalizeFirstLetter("italya", 'tr') // Δ°talya" (correct in Turkish Latin!) )
For even more internationalization options, please see the original answer below.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With