Capitalize First Letter

Capitalize the first letter of a string while keeping the rest unchanged.

Code

General
str.charAt(0).toUpperCase() + str.slice(1);

Parameters

The string to capitalize

Browser·fetch() may be limited by CORS

More JavaScript Snippets